Trong chương trình này, chúng ta sẽ thấy cách chuyển đổi độ C sang độ F bằng C ++. Như chúng ta biết, công thức rất đơn giản.
Thuật toán
Begin Take the Celsius temperature in C calculate F = (9C/5)+32 return F End
Mã mẫu
#include<iostream> using namespace std; main() { float f, c; cout << "Enter temperature in Celsius: "; cin >> c; f = (9.0*c/5.0)+32; cout << "Equivalent Fahrenheit temperature is: " << f; }
Đầu ra
Enter temperature in Celsius: 37 Equivalent Fahrenheit temperature is: 98.6