標題:
for 迴圈 (四)
[打印本頁]
作者:
游東祥
時間:
2014-10-4 10:41
標題:
for 迴圈 (四)
從 1 加到 100
作者:
謝瀞儀
時間:
2014-10-4 11:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=0;
for(int i=1; i<=100; i++)
{
a=a+i;
}
cout<<a<<"\a"<<"\n";
system ("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2014-10-4 11:23
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a=0;
for(int i=1;i<=100;i++)
{
a=a+i;
}
cout<<a<<" ";
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2014-10-4 11:23
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int w=0;
for(int i=1; i<=100; i++)
{
w=w+i;
cout<<w<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2014-10-4 11:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=0;
for(int i=1 ; i>0; i=i+1)
{
a=a+i;
cout<<a<<".";
}
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2014-10-4 11:30
本帖最後由 李知易 於 2014-10-4 11:31 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a=0;
for(int i=1;i<=100;i++)
{
a=a+i;
}
cout<<a<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2