摘要:
#includeint main(void){ int i,n,sum; printf("Enter n:"); scanf("%d",&n); sum=0; for(i=1;i<=n;i++){ sum=sum+i; } printf("Sum of numbers from 1 to%dis%d\n",n,sum); return 0;} 阅读全文
posted @ 2013-10-03 10:01
plusfancy
阅读(87)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int fahr,lower,upper; double celsius; printf("Enter lower:"); scanf("%d",&lower); printf("Enter upper:"); scanf("%d",&upper); printf("fahr celsius\n"); for(fahr=lower;fahr<=upper;fahr++){ celsius=(5.0/9.0)*(fahr-32) 阅读全文
posted @ 2013-10-03 07:48
plusfancy
阅读(205)
评论(0)
推荐(0)
摘要:
#include#includeint main(void){ int money,year; double rate,sum; printf("Enter money:"); scanf("%d",&money); printf("Enter year:"); scanf("%d",&year); printf("Enter rate:"); scanf("%lf",&rate); sum=money*pow(1+rate,year); printf 阅读全文
posted @ 2013-10-03 07:28
plusfancy
阅读(101)
评论(0)
推荐(0)
摘要:
#includeint main(void){ double x,y; printf("Enter x(x>=0):\n"); scanf("%lf",&x); if(x<=15){ y=4*x/3; } else{ y=2.5*x-10.5; } printf("y=f(%f)=%.2f\n",x,y); return 0;} 阅读全文
posted @ 2013-10-03 07:20
plusfancy
阅读(79)
评论(0)
推荐(0)

浙公网安备 33010602011771号