任務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函式資料型別輸入應與先前定義的一致,否則會出錯。