几周前我开始学习计算机编程,我们刚刚开始使用 Objective-C!我们需要将摄氏度转换为华氏度和开尔文。为此,我必须输入摄氏度。然后我用这个等式得到华氏温度:* 9 / 5 + 32。为了得到开尔文,我加上 273.15。
#include <stdio.h>
int main(void)
{
float Celsius;
float Farenheight = Celsius * 9 / 5 + 32;
float Kelvin = Celsius + 273.15;
printf("How many degrees in Celsius?");
scanf("%s %s %d", Celsius, Farenheight, Kelvin);
printf("C: %s, F: %s, K: %d", Celsius, Farenheight, Kelvin);
}
这是我迄今为止提出的(第二次修订),但我真的不确定如何做到这一点。如果有人可以帮助我,那就太好了!