摘要: T1 #include <stdio.h> int main() { int fahr = 150; int celsius = 5 * (fahr - 32) / 9; printf("fahr = %d, celsius = %d", fahr, celsius); } T2 #include 阅读全文
posted @ 2024-03-15 15:18 Icys 阅读(18) 评论(0) 推荐(0) 编辑