摘要: #include <stdio.h> int main() { double F = 80.0, C;//定义摄氏温度变量,赋值华氏温度 C = 5 * (F - 32) / 9.0;//计算摄氏温度 printf("%lf", C);//输出摄氏温度 return 0; } 阅读全文
posted @ 2022-12-31 19:42 放氮气的蜗牛 阅读(135) 评论(0) 推荐(0) 编辑