2022年3月22日

task6.c

摘要: #include <stdio.h> #include<string.h> int main() { int answer; char words[5000]; printf("网课学习让一些人欢喜一些人忧.\n"); printf("1. 作为喜欢自学且自律的人,觉得这样很好. 有网络,自主学习, 阅读全文

posted @ 2022-03-22 20:42 孙羽彤 阅读(15) 评论(1) 推荐(0)

task5.c

摘要: #include <stdio.h> int main() {char ans1, ans2; printf("第3章认真学完一遍了没? (输入y或Y表示认真学完一遍了,输入n或N表示没有) :"); ans1=getchar(); getchar(); printf("\n动手敲代码实践了没? ( 阅读全文

posted @ 2022-03-22 20:17 孙羽彤 阅读(24) 评论(0) 推荐(0)

task4.c

摘要: #include <stdio.h> int main() { int age1, age2; char gender1, gender2; scanf("%d%c%d%c", &age1, &gender1, &age2, &gender2); printf("age1 = %d, gender1 阅读全文

posted @ 2022-03-22 19:39 孙羽彤 阅读(37) 评论(0) 推荐(0)

task3.c

摘要: #include<stdio.h> int main() { double x, y; char c1, c2, c3; int a1, a2, a3; scanf("%d %d %d", &a1, &a2, &a3); printf("%d,%d,%d\n", a1, a2, a3); scanf 阅读全文

posted @ 2022-03-22 19:30 孙羽彤 阅读(25) 评论(0) 推荐(0)

task2_3.c

摘要: #include <stdio.h> #include <stdlib.h> #include <math.h> int main() { double c, f; while (scanf("%lf",&c) != EOF) { f = c*9 / 5 + 32; printf("摄氏度c=%.2 阅读全文

posted @ 2022-03-22 18:44 孙羽彤 阅读(24) 评论(0) 推荐(0)

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 孙羽彤 阅读(18) 评论(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 孙羽彤 阅读(14) 评论(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 孙羽彤 阅读(16) 评论(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 孙羽彤 阅读(25) 评论(2) 推荐(0)

导航