实验作业2
任务1
源代码
#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; }
运行效果
问题回答
1 生成2024832904xx的数字,xx的范围为1-79
2生成2024832900xx的数字,xx的氛围为1-21
3随机抽取5个人的学号
任务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 ans1; while((ans1=getchar())!=EOF){ if(ans1==121) printf("%s\n","wait a minute"); else if(ans1==103) printf("%s\n","go go go"); else if (ans1==114) printf("%s\n","stop!"); else printf("%s\n","something must be wrong..."); getchar(); } return 0; }
运行效果
任务4
源代码
#include<stdio.h> int main(){ double x,min,total,max=0; printf("输入今日开销,直到输入-1终止\n"); scanf("%lf",&x); max=x; min=x; while(x>=0) { total=total+x; if(x>max) max=x; if(x<min) min=x; scanf("%lf",&x); } printf("今日累计消费总额:%.1f\n",total); printf("今日最大一笔开销:%.1f\n",max); printf("今日最低一笔开销:%.1f\n",min); return 0; }
运行效果
任务5
源代码
#include<stdio.h> int main() { int a,b,c; while(scanf("%d%d%d",&a,&b,&c)!=EOF) if(a<0||b<0||c<0||a+b<=c||a+c<=b||b+c<=a) printf("不能构成三角形"); else if(a==b&&b==c) printf("等边三角形"); else if(a==b||a==c||b==c) printf("等腰三角形"); else if(a*a+b*b==c*c||b*b+c*c==a*a||a*a+c*c==b*b) printf("直角三角形"); else printf("普通三角形"); return 0; }
运行效果
任务6
源代码
#include<stdio.h> #include<stdlib.h> #include<math.h> int main(){ int num,x,y; y=0; srand(time(NULL)); num=rand()%30+1; printf("猜猜2024年11月哪一天会是你的lucky day\n\n"); printf("开始喽,你有三次机会,猜吧(1~30):"); do { ++y; scanf("%d",&x); if(x<num) {printf("\n你猜的日期早了,你的lucky day还没到呢\n\n"); if (y<3) printf("再猜(1~30):") ;} else if(x>num) {printf("\n你猜的日期晚了,你的lucky day在前面哦\n\n"); if(y<3) printf("再猜(1~30):") ;} else {printf("哇,猜中了:)"); break;} } while (y<3); printf("次数用光了,偷偷告诉你,11月你的lucky day是%d号",num); return 0; }
运行效果
实验总结
个人对getchar函数使用方法不熟悉,getchar函数通常是先定义一个ans,用它作为存储键盘输入。回车也算getchar,如想多组输入,要在循环里加上getchar(),rand函数前必须加上种子,否则数值会一成不变,一般加srand(time(NULL))。想要输出某个范围的数值,用rand()%xx,后面不加1,,范围就是0-xx,加1就是1-xx。scanf函数数据类型输入应与先前定义的一致,否则会出错。