2022年3月22日

task2_2.c

摘要: #include <stdio.h> #include <stdlib.h> #include <math.h> int main() {double x, ans; while(scanf("%lf", &x) !=EOF) {ans=pow(x, 365); printf("%.2f的365次方 阅读全文

posted @ 2022-03-22 18:17 孙羽彤 阅读(6) 评论(0) 推荐(0) 编辑

task2_1.c

摘要: #include <stdio.h> #include <stdlib.h> #include <math.h> int main() { double x, ans; scanf("%lf", &x); ans= pow(x, 365); printf("%.2f的365次方: %.2f\n", 阅读全文

posted @ 2022-03-22 18:12 孙羽彤 阅读(6) 评论(0) 推荐(0) 编辑

task1_2.c

摘要: #include <stdio.h> int main() { printf(" O O \n"); printf("<H> <H>\n"); printf("I I I I\n"); return 0; } 阅读全文

posted @ 2022-03-22 17:56 孙羽彤 阅读(12) 评论(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; task1_ 阅读全文

posted @ 2022-03-22 17:48 孙羽彤 阅读(18) 评论(2) 推荐(0) 编辑

导航