標題:
for 迴圈 (二) 計算總合
[打印本頁]
作者:
周政輝
時間:
2017-8-2 13:41
標題:
for 迴圈 (二) 計算總合
本帖隱藏的內容需要回復才可以瀏覽
作者:
楊詠翔
時間:
2017-8-2 13:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i=i+1)
{
total=total+i;
}
cout<<total;
system("pause");
return 0;
}
複製代碼
作者:
胡綵玲
時間:
2017-8-2 13:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100; i=i+1)
{total=total+i;
}
cout<<total<<endl;
system("pause");
return 0;
cout<<"hello"<<endl;
}
作者:
蔣皓宸
時間:
2017-8-2 13:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int jo=0 ;
for (int i=1; i<=100; i=i+1)
{
jo=jo+i;
}
cout<<jo;
system("pause");
return 0;
}
複製代碼
回復
1#
周政輝
作者:
林翊卉
時間:
2017-8-2 13:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100; i=i+1)
{total=total+i;
}
cout<<total<<endl;
system("pause");
return 0;
cout<<"hello"<<endl;
}
作者:
蘇昱全
時間:
2017-8-2 13:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i=i+1)
{
total=total+i;
}
cout<<total;
system("pause");
return 0;
}
複製代碼
作者:
楊詠竣
時間:
2017-8-2 13:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i=i+1)
{
total=total+i;
}
cout<<total<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳智鈞
時間:
2017-8-2 13:46
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i=i+1)
{
total=total+i;
}
cout<<total<<endl;
system("pause");
return 0;
}
複製代碼
作者:
石庭禎
時間:
2017-8-2 13:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100; i=i+1)
{total=total+i;
}
cout<<total<<endl;
system("pause");
return 0;
}
作者:
黃宇綸
時間:
2017-8-2 13:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int red=0;
for(int i=1;i<=100;i=i+1)
{
red=red+i;
}
cout<<red<<endl;
system("pause");
return 0;
}
作者:
黃宇瑄
時間:
2017-8-2 13:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i=i+1)
{
total=total+i;
}
cout<<total;
system("pause");
return 0;
}
複製代碼
作者:
郭宗翰
時間:
2017-8-2 13:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i=i+1)
{
total=total+i;
}
cout<<total;
system("pause");
return 0;
system("pause");
return 0;
}
複製代碼
作者:
邱路加
時間:
2017-8-2 13:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i=i+1)
{
total=total+i;
}
cout<<total;
system("pause");
return 0;
}
system("pause")
複製代碼
作者:
鄭稟燁
時間:
2017-8-2 13:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i=i+1)
{
total=total+i;
}
cout<<total;
system("pause");
return 0;
}
複製代碼
作者:
尤靖瑗
時間:
2017-8-2 13:47
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i=i+1)
{
total= total+i;
}
cout<<total;
system("pause");
return 0;
}
複製代碼
作者:
郭采納
時間:
2017-8-2 13:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int gg=0;
for (int x=1;x<=100;x=x+1)
{
gg=gg+x;
}
cout<<gg<<"\r\n";
system("pause");
return 0;
}
複製代碼
作者:
林子勛
時間:
2017-8-2 13:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total = 0;
for( int i=1;i<=100;i=i+1)
{
total = total+i;
}
cout << total;
system("pause");
return 0;
}
複製代碼
作者:
蔡佾辰
時間:
2017-8-2 13:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i++)
{
total=total+i;
}
cout<<total;
system("pause");
return 0;
}
複製代碼
作者:
林孟霆
時間:
2017-8-2 13:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i++)
{
total=total+i;
}
cout<<total;
system("pause");
return 0;
}
複製代碼
作者:
尤靖評
時間:
2017-8-2 13:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=100;i++)
{
total=total+i;
}
cout<<total;
system("pause");
return 0;
}
複製代碼
作者:
林廷融
時間:
2017-8-2 13:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total = 0;
for(int i=1;i<=100;i++)
{
total = total+i;
}
cout<<total<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2