標題:
for 迴圈 (五)
[打印本頁]
作者:
tonyh
時間:
2019-9-6 19:46
標題:
for 迴圈 (五)
利用 for 迴圈, 計算 1 加到 100.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3+...+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊佑諺
時間:
2019-9-6 19:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3+...+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2019-9-6 19:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3+...+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
余有晉
時間:
2019-9-6 19:58
[attach]7091[/attach]
作者:
董宸佑
時間:
2019-9-6 19:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3+.....+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2019-9-6 19:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3+...+100="<<sum<<endl;
system("pause");
return 0;
複製代碼
作者:
余有晉
時間:
2019-9-6 19:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3+...+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2019-9-6 20:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3+...+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周孫印
時間:
2019-9-6 20:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3...+100"<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2019-9-6 20:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int d=0;
for(int i=1; i<=100; i++)
{
d+=i;
}
cout<<"1+2+3+...+100="<<d;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2019-9-6 20:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1 2 3 +到100 "<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周之閔
時間:
2019-9-6 20:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for (int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3+...+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2019-9-6 20:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3+...+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2019-9-6 20:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3+...+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2