c语言换算程序怎么写

时间:2025-01-28 18:37:42 单机游戏

```c

include

int main() {

int seconds, minutes, hours, days;

printf("请输入总秒数: ");

scanf("%d", &seconds);

days = seconds / (24 * 3600);

seconds = seconds % (24 * 3600);

hours = seconds / 3600;

seconds = seconds % 3600;

minutes = seconds / 60;

seconds = seconds % 60;

printf("时间: %d天, %d小时, %d分钟, %d秒\n", days, hours, minutes, seconds);

return 0;

}

```

这个程序首先定义了四个整型变量:`seconds`(秒数)、`minutes`(分钟数)、`hours`(小时数)和`days`(天数)。然后,程序提示用户输入总秒数,并使用算术运算将秒数转换为天数、小时数、分钟数和秒数。最后,程序使用`printf`函数以`天, 小时, 分钟, 秒`的格式输出结果。

如果你需要将其他单位(如摄氏度到华氏度)进行转换,可以编写类似的程序,并根据相应的转换公式进行计算。例如,将摄氏度转换为华氏度的程序可能如下所示:

```c

include

double celsiusToFahrenheit(double celsius) {

return celsius * 9.0 / 5.0 + 32.0;

}

int main() {

double celsius, fahrenheit;

char unit;

printf("请输入温度值和单位(C 或 F): ");

scanf("%lf %c", &celsius, &unit);

if (unit == 'C' || unit == 'c') {

fahrenheit = celsiusToFahrenheit(celsius);

printf("%.2lf°C 转换为华氏度是 %.2lf°F\n", celsius, fahrenheit);

} else if (unit == 'F' || unit == 'f') {

celsius = (fahrenheit - 32.0) * 5.0 / 9.0;

printf("%.2lf°F 转换为摄氏度是 %.2lf°C\n", fahrenheit, celsius);

} else {

printf("无效的单位,请输入 C 或 F。\n");

}

return 0;

}

```

这个程序首先定义了一个函数`celsiusToFahrenheit`,用于将摄氏度转换为华氏度。在`main`函数中,程序提示用户输入温度值和单位,然后根据用户输入的单位调用相应的函数进行转换,并输出结果。