摘要: #include <stdio.h> #include <math.h> int main() { double C,F; while(scanf("%lf", &C) !=EOF) { F=9*C/5+32; printf("摄氏度c=%.2f时,华氏度f=%.2f\n", C, F); prin 阅读全文
posted @ 2022-03-28 21:29 刘登艳 阅读(18) 评论(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, an 阅读全文
posted @ 2022-03-28 21:17 刘登艳 阅读(28) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { printf(" O "); printf(" O \n"); printf("<H>"); printf(" <H>\n"); printf("I I"); printf(" I I\n"); return 0; } 阅读全文
posted @ 2022-03-28 21:01 刘登艳 阅读(28) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); printf("\n"); printf(" O \n"); printf("<H>\n"); printf("I I\n"); re 阅读全文
posted @ 2022-03-28 20:51 刘登艳 阅读(29) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); return 0; } 阅读全文
posted @ 2022-03-27 22:08 刘登艳 阅读(24) 评论(2) 推荐(0)