celsius to kelvin 01

Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 5 Exercise 2
Using std_lib_facilities.h by Bjarne Stroustrup.

[code language=”cpp”]
// Philipp Siedler
// Bjarne Stroustrup’s PP
// Chapter 5 Exercise 2

//input: 24

double ctok(double c) {
int k = c + 273.15;
return k;
}

int main() {
double c = 0;
cin >> c;
double k = ctok(c);
cout << k << ‘\n’;

keep_window_open();
}
[/code]

Output:
24
297

Newsletter Updates

Enter your email address below to subscribe to our newsletter

Leave a Reply

Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124