Viết chương trình C để chuyển đổi từ độ C sang độ F

Các bước thực hiện:

1. Nhập vào độ C (là 1 số thực)

2. Chuyển đổi từ độ C sang độ F dựa trên công thức (độ C * 9 / 5) + 32

3. In ra kết quả

Code tham khảo:

int main(){
float celsius, fahrenheit;
//1. Input temperature in Celsius from user
printf("Enter temperature in Celsius: ");
scanf("%f", &celsius);

//2. The formula: fahrenheit = (celsius * 9 / 5) + 32.
fahrenheit = (celsius * 9 / 5) + 32;
printf("%.2f Celsius = %.2f Fahrenheit", celsius, fahrenheit);
}