实验2_C语言分支与循环基础应用编程
任务1
1.rand()函数会生成一个伪随机整数。rand() % (N2 - N1 + 1)这部分会生成一个在0到N2 - N1范围内的随机数。再加上N1,就使得随机数的范围变为N1到N2。
2.rand()生成伪随机整数。rand() % N3会生成一个在0到N3 - 1范围内的随机数。再加上1,就使得随机数的范围变为1到N3。
3.这个程序的主要功能是生成一定数量的随机字符串,每个字符串以 “20248329” 或 “20248395” 开头,后面跟四位随机数字。程序首先使用srand(time(NULL))初始化随机数生成器,确保每次运行程序时生成的随机数序列不同。然后,通过一个循环生成N个随机字符串。在循环中,先随机生成一个 0 或 1 的值赋给random_major。如果random_major为真(即 1),则生成一个在N1到N2范围内的随机数,并以 “20248329” 开头加上这个四位随机数输出;如果random_major为假(即 0),则生成一个在1到N3范围内的随机数,并以 “20248395” 开头加上这个四位随机数输出。
#include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 397 #define N2 476 #define N3 21 int main() { int cnt; int random_major, random_no; srand(time(NULL)); cnt = 0; while(cnt < N) { random_major = rand() % 2; if(random_major) { random_no = rand() % (N2 - N1 + 1) + N1; printf("20248329%04d\n", random_no); } else { random_no = rand() % N3 + 1; printf("20248395%04d\n", random_no); } cnt++; } return 0; }
任务2
#include <stdio.h> #include <math.h> int main() { double a, b, c; double delta, p1, p2; while(scanf("%lf%lf%lf", &a, &b, &c) != EOF) { if(a == 0) { printf("a = 0, invalid input\n"); continue; } delta = b*b - 4*a*c; p1 = -b/2/a; p2 = sqrt(fabs(delta))/2/a; if(delta == 0) printf("x1 = x2 = %.2g\n", p1); else if(delta > 0) printf("x1 = %.2g, x2 = %.2g\n", p1+p2, p1-p2); else { printf("x1 = %.2g + %.2gi, ", p1, p2); printf("x2 = %.2g - %.2gi\n", p1, p2); } } return 0; }
任务3
#include <stdio.h> int main() { char color; printf("请输入交通信号灯颜色(r/g/y),按下 CTRL+Z 和回车终止程序:\n"); while (scanf("%c", &color)!= EOF) { if (color == 'r') { printf("stop!\n"); } else if (color == 'g') { printf("go go go\n"); } else if (color == 'y') { printf("wait a minute\n"); } else { printf("something must be wrong...\n"); } while (getchar()!= '\n'); } return 0; }
任务4
#include <stdio.h> int main() { double expense; double maxExpense = 0.0; double minExpense = 20000.0; double totalExpense = 0.0; printf("请输入当天的开销,输入 -1 终止程序。\n"); while (1) { scanf("%lf", &expense); if (expense == -1) { break; } if (expense > maxExpense) { maxExpense = expense; } if (expense < minExpense) { minExpense = expense; } totalExpense += expense; } if (totalExpense > 0) { printf("最高一笔开销:%.1lf 元。\n", maxExpense); printf("最低一笔开销:%.1lf 元。\n", minExpense); printf("一天总开销:%.1lf 元。\n", totalExpense); } else { printf("没有输入有效的开销数据。\n"); } return 0; }
任务5
#include <stdio.h> int main() { int a, b, c; printf("请输入三角形的三条边边长(整数),按下 CTRL+Z 和回车终止程序:\n"); while (scanf("%d%d%d", &a, &b, &c)!= EOF) { if ((a + b > c) && (a + c > b) && (b + c > a)) { if (a == b && b == c) { printf("等边三角形\n"); } else if ((a == b && a!= c) || (a == c && a!= b) || (b == c && b!= a)) { if ((a * a + b * b == c * c) || (a * a + c * c == b * b) || (b * b + c * c == a * a)) { printf("等腰直角三角形\n"); } else { printf("等腰三角形\n"); } } else if ((a * a + b * b == c * c) || (a * a + c * c == b * b) || (b * b + c * c == a * a)) { printf("直角三角形\n"); } else { printf("普通三角形\n"); } } else { printf("不能构成三角形\n"); } } return 0; }
任务6
#include <stdio.h> #include <stdlib.h> #include <time.h> int main() { srand(time(NULL)); int luckyDay = rand() % 30 + 1; int guess; int attempts = 3; printf("猜猜 2024 年 11 月哪一天会是你的 lucky day\n"); printf("开始喽,你有三次机会,猜吧(1~30):"); while (attempts > 0) { scanf("%d", &guess); if (guess == luckyDay) { printf("恭喜你,猜对了!\n"); return 0; } else if (guess < luckyDay) { printf("你猜的日期早了,你的 lucky day 还没到呢\n"); } else { printf("你猜的日期晚了,你的 lucky day 在前面哦\n"); } attempts--; if (attempts > 0) { printf("再猜(1~30):"); } } printf("次数用光啦。偷偷告诉你,11 月你的 lucky day 是 %d 号\n", luckyDay); return 0; }