11 2021 档案

摘要:1.定义一个含有8个存储单元的实行数组,从键盘上接收数,然后逆序输出。 #include<stdio.h> main(){ double m[8]; int i; for(i=0;i<=7;i++) scanf("%lf",&m[i]); for(i=7;i>=0;i--) printf("%f", 阅读全文
posted @ 2021-11-27 20:28 小楠参 阅读(16) 评论(0) 推荐(0)
摘要:1.猜数字:随机产生一个0-99的数,猜猜看。(如果大了 ,就提示大了点;如果小了 , 就提示小了点;直到猜对为止。) #include<stdio.h>#include<stdlib.h>#include<time.h>main(){ int x,guess; srand((unsigned in 阅读全文
posted @ 2021-11-27 20:27 小楠参 阅读(15) 评论(0) 推荐(0)
摘要:1.输出以下图形。 * ** *** **** ***** #include<stdio.h> main(){ int i,j; for(i=1;i<=5;i++){ for(j=1;j<=i;j++){ printf("*"); } printf("\n"); } } 2.输出以下图形。 **** 阅读全文
posted @ 2021-11-27 20:26 小楠参 阅读(27) 评论(0) 推荐(0)
摘要:1.编写程序,使用while语句求和sum=1+3+5+…+21。 #include<stdio.h> main(){ int i=1,sum=0; while(i<=21){ sum+=i; i++; } printf("和是%d\n",sum); } 2.编写程序,使用while语句求和sum= 阅读全文
posted @ 2021-11-25 15:54 小楠参 阅读(99) 评论(0) 推荐(0)
摘要:1.编写程序判断n是正数还是负数。 #include<stdio.h> main(){ int n; printf("输入一个整数:\n"); scanf("%d",&n); if(n>0) printf("%d是正数!\n",n); else if(n==0) printf("%d既不是正数,也不 阅读全文
posted @ 2021-11-24 23:13 小楠参 阅读(92) 评论(0) 推荐(0)