摘要:
2 从大到小排列输出 3 共有元素 4 求最大值及下标 5 输入十个学生的成绩 附加1字符串 附加2 九九乘法表 阅读全文
摘要:
2 99乘法表 3 字符串 4 not found 阅读全文
摘要:
乘法口诀表 阅读全文
摘要:
#include int main(void) { int i; long int f[40]={1,1}; for(i=2;i #include int main() { int sign(int x); int n,sum; int even(int n); int j,i; int prime(int m); int ... 阅读全文
摘要:
#include int main() { int sign(int x); int x,y; scanf("%d",&x); y=sign(x); printf("sign(%d)=%d\n",x,y); return 0; } int sign(int x) { int y; if(x>0) y=1; ... 阅读全文
摘要:
#include int main()//1.比较三个数大小(从小到大排序) { int a,b,c,d=0; printf("请输入三个数\n"); scanf("%d%d%d",&a,&b,&c); if(a>b) { d = a; a = b; b = d; } if(b>c) { d = b; b = c; c ... 阅读全文
摘要:
#include #include #include int main() { printf("请猜一个整数\n你的猜测是:"); int predefined=rand()%100; int a; scanf("%d",&a); int b; for(b=1;b int main() //最大公约数和最小公倍数 { int ... 阅读全文
摘要:
#include//1.三角形 int main() { printf("*\n"); printf("**\n"); printf("***\n"); printf("****\n"); printf("*****\n"); printf("******\n"); printf("*******\n"); printf(... 阅读全文