2010年9月17日 星期五

2010/09/17 c++ 1+....+100=

#include <iostream>
using namespace std;
int main()
{
    int add=0;
    for (int b=1;b<=100;b++)
    add=add+b;
    printf ("%d",add);
    system("pause");
}

沒有留言:

張貼留言