上一页 1 ··· 63 64 65 66 67 68 69 70 71 ··· 181 下一页
摘要: //求最大公约数 #include <stdio.h> main() { int m,n,i,k; scanf("%d,%d",【1】); k=【2】?m:n; for(i=k;i>=1;i--) { if(【3】) { printf("最大公约数为%d\n",【4】); break; } } ge 阅读全文
posted @ 2023-02-10 09:41 myrj 阅读(36) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //计算1到5的阶乘和,并将结果保存到变量s中 main() { int a,s=【1】,b=【2】; for(a=1;a<=【3】;a++) { b=b*a; s【4】=【5】; } printf("1-5阶乘的和为:%d",s); getchar(); } 阅读全文
posted @ 2023-02-10 09:35 myrj 阅读(246) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //执行程序段后,变量s的值为() main() { int a=10,s=0; do { s=s+a; a++; } while(a<1); getchar(); } #include <stdio.h> //执行程序段后,变量s的值为(10) main() 阅读全文
posted @ 2023-02-10 09:25 myrj 阅读(62) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //求s=1+2+3+4+...+100 main() { int a=101,【1】; while(【2】,a>0) s【3】=【4】; printf("s=%d",s); getchar(); } #include <stdio.h> //求s=1+2+3+ 阅读全文
posted @ 2023-02-10 09:20 myrj 阅读(25) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //执行下列程序段后,y的值是(),x的值是(), m的值是(),n的值是() main() { int x,y,z,m,n; m=10;n=5; x=(--m==n++)?--m:++n; y=m++; getchar(); } #include <stdio 阅读全文
posted @ 2023-02-10 08:50 myrj 阅读(28) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //求两个数中的最大值 int max(int a,int b) { return 【1】; } main() { int a,b; scanf("%d%d",【2】); printf("max=%d",【3】); getchar(); } #include < 阅读全文
posted @ 2023-02-10 08:32 myrj 阅读(167) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //求任意整数的阶乘 //如果输入3则输出3!=6 main() { int n,a,c=1; scanf("%d",&n); for(a=1;【1】;a++) c=【2】; printf("%d!=%d",【3】); getchar(); } #include 阅读全文
posted @ 2023-02-09 20:41 myrj 阅读(34) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //找出100-999间所有的Armstrong数 //Armstrong数:指这个3位数各位上数字的立方和等于自身 //371=3*3*3+7*7*7+1*1*1 main() { int i,a,b,c; for(i=100;i<=999;i++) { a= 阅读全文
posted @ 2023-02-09 20:03 myrj 阅读(245) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //求出a中各相邻两个元素的和,并将这些和存放在数组b中 //按每行3个元素的形式输出。例如:b[1]=a[1]+a[0],....,b[9]=a[9]+a[8] main() { int a[10],b[10],i; printf("\nInput 10 nu 阅读全文
posted @ 2023-02-09 19:44 myrj 阅读(24) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //输入一行英文,输出单词个数 #include <string.h> main() { char zf[101]; int a,b,【1】; 【1】; a=【1】; for(b=0;【1】;b++) if(zf[b]==【1】) c++; c=【1】; pri 阅读全文
posted @ 2023-02-09 15:25 myrj 阅读(22) 评论(0) 推荐(0) 编辑
上一页 1 ··· 63 64 65 66 67 68 69 70 71 ··· 181 下一页