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