2022年10月12日

摘要: #include<stdio.h> #include<math.h> int main() { float F, C; while (scanf_s("%f", &C)!= EOF) { F = 9*C/5+32; printf("摄氏度c=%.2f时,华氏度f=%.2f", C, F); prin 阅读全文
posted @ 2022-10-12 17:27 好厚的雪 阅读(11) 评论(0) 推荐(0) 编辑
 
摘要: #include <stdio.h> #include <math.h> int main() { double x , ans ; while(scanf("%lf", &x) !=EOF) { ans = pow(x,365); printf("%.2f的365次方:%.2f\n" , x , 阅读全文
posted @ 2022-10-12 09:34 好厚的雪 阅读(0) 评论(0) 推荐(0) 编辑
 
摘要: #include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); printf(" O \n"); printf("<H>\n"); printf("I I\n"); return 0; } 阅读全文
posted @ 2022-10-12 09:03 好厚的雪 阅读(12) 评论(0) 推荐(0) 编辑