标签:style class blog code http tar
1 /* 2 * Main.c 3 * 循环-01. 求整数段和 4 * Created on: 2014年6月18日 5 * Author: Boomkeeper 6 ***测试木有通过**** 7 */ 8 9 #include <stdio.h> 10 #include <stdlib.h> 11 12 int main() 13 { 14 int a,b,sum; 15 scanf("%i %i",&a,&b); 16 17 if(a>b) 18 exit(0); 19 20 { 21 int i=0,count=0; 22 for(i=a;i<=b;i++) 23 { 24 printf("%*i",5,i); 25 count++; 26 if(count==5 && i!=b)//够5个数且不是最后一个数时,换行 27 { 28 printf("\n"); 29 count=0; 30 } 31 sum+=i; 32 } 33 } 34 printf("\nSum = %i\n",sum); 35 return 0; 36 }
这个问题挺闹人的,明明不难,但就是做不对!结果就是下面的截图...还请明白人指点啊,趴屏幕上数空格半天了...
题目链接:http://pat.zju.edu.cn/contests/basic-programming/%E5%BE%AA%E7%8E%AF-01
*循环-01. 求整数段和【help】,布布扣,bubuko.com
标签:style class blog code http tar
原文地址:http://www.cnblogs.com/boomkeeper/p/C1.html