標題:
小星星 1
[打印本頁]
作者:
鄭繼威
時間:
2022-6-15 03:37
標題:
小星星 1
本帖最後由 鄭繼威 於 2022-6-29 20:07 編輯
要破解小星星的所有問題,就是找出
層數與*
的關係
[attach]13223[/attach]
試運用巢狀迴圈完成以下圖案:
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(______________)
{
for(______________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//決定層數
//有5層->執行5次的迴圈
//初始值;結束條件;控制項
for(int i=1;i<=5;i++){
//決定*數
//執行層數(i)次的迴圈
for(int j=1;j<=i;j++){
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-6-15 21:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//決定層數
//有5層->執行5次的迴圈
for(int i=1;i<=5;i++){
//決定*數
//執行?次的迴圈
for(int j=1;j<=i;j++){
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃柏青
時間:
2022-6-15 21:16
#include <iostream>
#include <cstdlib>
using namespace std;
int main(){
for(int i=1; i<=5; i++){
for(int j=1; j<=i; j++){
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2022-6-15 21:17
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int e=1; e<=i; e++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2022-6-15 21:20
#include <iostream>
#include <cstdlib>
using namespace std;
int main(){
for(int i=1; i<=5; i++){
for(int j=1; j<=i; j++){
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-7-6 20:32
s
作者:
林劭澧
時間:
2022-7-6 20:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++){
for(int j=1; j<=i; j++){
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2022-7-6 20:37
本帖最後由 林劭杰 於 2022-7-6 20:40 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++){
for(int j=1; j<=i; j++){
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2