Viết chương trình C để chuyển đổi nhiệt độ nhập từ bàn phím theo độ F sang độ C trong đó degC = (degF-32) /1,8 và xuất kết quả ra màn hình. Write C program to convert a temperature entered from the keyboard in degrees Fahrenheit to degrees Celsius where degC = (degF-32)/1.8 and output the result to the screen.
2 câu trả lời
#include<stdio.h>
int main() {
float degF;
scanf("%f", °F);
printf("%.1f", (degF - 32) / 1.8);
}
#include<iostream>
using namespace std;
int main(){
float C,F;
cin>>F;
C = (F-32)/1.8;
cout<<C;
}
Câu hỏi trong lớp
Xem thêm