摘要: 1. #include<stdio.h> main() { char str[80]; int i=0; int length=0; gets(str); puts(str); while(str[i++]!='\0') length++; printf("字符串的长度为:%d\n",length) 阅读全文
posted @ 2021-11-25 20:58 姚佳旭 阅读(10) 评论(0) 推荐(0)
摘要: 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",m[i]);} 阅读全文
posted @ 2021-11-19 22:27 姚佳旭 阅读(15) 评论(0) 推荐(0)
摘要: 1.随机产生一个0-99的数,猜猜看,如果大了,就显示大了点;如果小了,就显示小了点,直到猜对为止。 #include<stdio.h>#include<stdlib.h>#include<time.h>int main(){int a,n;srand((unsigned)time(NULL));a 阅读全文
posted @ 2021-11-19 22:23 姚佳旭 阅读(37) 评论(0) 推荐(0)
摘要: 1.输出以下图形 * ** *** **** ***** #include<stdio.h> main() { int i,j,k; for(i=1;i<=5;i++) { for(j=1;j<=5-1;j++){ printf(" "); } for(k=1;k<=i;k++){ printf(" 阅读全文
posted @ 2021-11-19 22:21 姚佳旭 阅读(12) 评论(0) 推荐(0)
摘要: 1.编写程序,使用while语句求和sum=1+3+5+···+21。 #include<stdio.h>main(){int i=1;int sum=0;while(i<=21){sum+=i;i+=2;}printf("Sum=%d\n",sum);} 2.编写程序,使用while语句求和sum 阅读全文
posted @ 2021-11-19 22:19 姚佳旭 阅读(14) 评论(0) 推荐(0)
摘要: 1.编写程序判断n是正数还是负数。 #include<stdio.h> main() { int n; printf("s输入一个整数:\n"); scanf("%d",&n); if(n>0) printf("%d是正数!\n",n); else if(n==0) printf("%d既不是正数, 阅读全文
posted @ 2021-10-29 21:43 姚佳旭 阅读(20) 评论(0) 推荐(0)
摘要: 1. #include<stdio.h> main() { int mark; printf("请输入学生的分数(0-100):\n"); scanf("%d",&mark); switch(mark/10) { case 10: case 9:printf("A\n"); case 8:print 阅读全文
posted @ 2021-10-27 19:30 姚佳旭 阅读(24) 评论(0) 推荐(0)
摘要: 编写程序,判断一个数n是正数还是负数 #include<stdio.h> main() { float n; scanf("%f",&n); if(n>0) printf("正数!\n"); else if(n==0) printf("0既不是正数,也不是负数!\n"); else printf(" 阅读全文
posted @ 2021-10-19 21:11 姚佳旭 阅读(15) 评论(0) 推荐(0)
摘要: 1、编写程序,使用scanf()函数接受整型、实型、字符型的变量,并分行依次输出。 #include<stdio.h> main(){ int a; float b; char c; scanf("%d,%f,%c",&a,&b,&c); printf("%d--%f--%c\n",a,b,c); 阅读全文
posted @ 2021-10-16 20:26 姚佳旭 阅读(27) 评论(0) 推荐(0)
摘要: 1编写程序,定义两个整形变量,赋值并输出。 #include<stdio.h> main() { int a=2; int b=6; printf("%d%\n",a,b); } 2..编写程序,定义一个单精度和一个双精度的变量,赋值并输出 #include<stdio.h> main() { fl 阅读全文
posted @ 2021-10-12 20:24 姚佳旭 阅读(35) 评论(0) 推荐(0)