- 博客(16)
- 收藏
- 关注
原创 递归函数
#includeint f(int m,int n){ if(m==0) return n+1; else if(m>0&&n==0) return f(m-1,1); else if(m>0&&n>0) return f((m-1),f(m,(n-1)));}int main(){ int x,y; while
2018-01-07 10:44:07 276
原创 高速公路超速处罚编程
#includeint main(){int x,y;double b;scanf("%d %d",&x,&y); b=(x-y)*100.0/y;if(b>50)printf("Exceed f%. License Revoked\n",b);if(b>=10&&bprintf("Exceed f%. Ticket 200\n",b);i
2018-01-03 11:13:48 2061
原创 鸡兔同笼
#includevoid main(){int a,b,c;for(a=1;a{ for(b=1;b { for(c=1;c { if(5*a+3*b+c/3==100&&a+b+c==100)printf("公鸡==%d,母鸡==%d,小鸡==%d\n",a,b,c); } }}
2018-01-03 09:46:00 215
原创 成绩的转换
#includeint main(){ int score;char grade='X';score/=10;scanf("%d",&score);if(score>=0&&score{ if(score>=90) grade='A'; else { if(score>=80) grade='B'; else
2018-01-03 09:06:13 367
原创 计算平均分
#includeint main(){ int score1, score2, score3, score4, score5;int totalScore;printf("Input the scores of five students:\n");scanf("%d",&score1);scanf("%d",&score2);scanf("%d",&sco
2017-12-22 19:51:29 913
原创 计算价钱
#include int main(){ float zl,jg,money; scanf("%f%f",&zl,&jg); money=zl*jg; printf("money=%f\n",money); return 0;}
2017-11-14 09:48:53 326
原创 计算并输出一个三位整数的个位以及十位百位数字之和
#include 心得体会:1 如果要输出一个换一次行,就必须输入一个加一个\nmain() 2 写之前必须想好怎
2017-11-12 17:45:32 17154
原创 计算乘积之和
#include 心得体会:认真,细心main(){ long i;long term, sum = 0;for(i = 1; i { term = i * (i + 1) * (i + 2); sum = sum + term;
2017-11-11 15:22:04 1456
原创 程序
#include main() { int x = 1, find = 0;while(!find){ if(x%2 ==1 || x%3 == 2 || x%5 == 4 || x%6 == 5 || x
2017-11-10 21:09:00 134
原创 for语句编程
#include main(){ int i,n,sum; printf("input n:"); scanf("%d" , &n); sum = 0; for(i=1 ;i { sum = sum + i; } printf("sum=%d\n",sum);}
2017-10-29 21:09:07 429
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人