编程菜鸟的日记-初学尝试编程-C++ Primer Plus 第5章编程练习2

#include <iostream>
using namespace std;
const int MAXSIZE=100;
int main()
{
 int a[MAXSIZE];
 int sum=0;
 for(int i=0;i<MAXSIZE;i++)
 {
  cin>>a[i];
  if(a[i]==0)
   return 0;
     sum=sum+a[i];
  cout<<"sum= "<<sum;
 }
 system("pause");
 return 0;
}

posted @ 2013-11-26 13:03  编程的爬行者  阅读(90)  评论(0编辑  收藏  举报