打死不穿秋裤

 

2021年11月27日

第十一次作业

摘要: 猜数字:随机产生一个0-99的数,猜猜看如果大了就提示大了点如果小了就提示小了点直到猜对为止 #include <stdio.h> #include <stdlib.h> #include <time.h> int main() { int a,n; srand((unsigned)time(NUL 阅读全文

posted @ 2021-11-27 21:40 打死不穿秋裤 阅读(18) 评论(0) 推荐(0) 编辑

第十次作业

摘要: 使用函数,求2个数的最大值,并调用 #include<stdio.h> int Max(int x,int y) { int r; if(x>y) r=x; else r=y; return r; } int main() { scanf("%d%d",&a,&b); c=Max(a,b); pri 阅读全文

posted @ 2021-11-27 21:32 打死不穿秋裤 阅读(20) 评论(0) 推荐(0) 编辑

2021年11月26日

第九次作业

摘要: 用循环求字符串长度 #include<stdio.h> #include<string.h> main(){ int i=0; char str[50]="wo ai c yuyan"; while(str[i]!='\0'){ i++; } printf("%d\n",i); } 编写程序,去掉字 阅读全文

posted @ 2021-11-26 20:16 打死不穿秋裤 阅读(8) 评论(0) 推荐(0) 编辑

2021年11月16日

第八次作业

摘要: P121 1题 #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]); } P121 2题 #include<st 阅读全文

posted @ 2021-11-16 12:12 打死不穿秋裤 阅读(12) 评论(0) 推荐(0) 编辑

2021年11月9日

第七次作业

摘要: 输出正三角 #include<stdio.h> main(){ int i,j; for(i=1;i<=6;i++){ for(j=1;j<=i;j++){ printf("*"); } printf("\n"); } #include <stdio.h> main() { int i,j,y; f 阅读全文

posted @ 2021-11-09 10:57 打死不穿秋裤 阅读(12) 评论(0) 推荐(0) 编辑

2021年11月2日

第六次作业

摘要: 编写程序,使用while语句求和sum=1+2+3+…+21. #include <stdio.h> main() { int i=1,sum=1; while (i<=21){ sum=sum+i; i++; } printf("和是%d\n",sum); } 编写程序,使用while语句求和su 阅读全文

posted @ 2021-11-02 20:09 打死不穿秋裤 阅读(24) 评论(0) 推荐(0) 编辑

2021年10月30日

第五次作业

摘要: 编写程序判断n是整数还是负数。 #include <stdio.h> main() { int n; printf("输入一个整数:\n"); scanf("%d",&n); if(n>0) printf("%d是正数!\n"); else if(n==0) printf("%d既不是正数,也不是负 阅读全文

posted @ 2021-10-30 15:09 打死不穿秋裤 阅读(13) 评论(0) 推荐(0) 编辑

2021年10月28日

第四次作业

摘要: 教材52页4-8. #include <stdio.h> main() { int mark; printf("输入学生的分数(0-100):\n"); scanf("%d",&mark); switch(mark/10) { case 10: case 9:printf("A\n");break; 阅读全文

posted @ 2021-10-28 21:50 打死不穿秋裤 阅读(9) 评论(0) 推荐(0) 编辑

2021年10月19日

第三次作业

摘要: 编写程序,判断一个数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 13:10 打死不穿秋裤 阅读(13) 评论(0) 推荐(0) 编辑

2021年10月12日

第二次作业

摘要: 1、编写程序,定义两个整形变量,赋值并输出。 #include<stdio.h> main() { int a=1,b=2; printf("%d\n%d\n",a,b); } 2、编写程序,定义一个单精度和一个双精度的变量,赋值并输出。 #include<stdio.h> main() { flo 阅读全文

posted @ 2021-10-12 10:52 打死不穿秋裤 阅读(27) 评论(0) 推荐(0) 编辑

导航