標題:
小星星 1
[打印本頁]
作者:
王瑞喻
時間:
2020-7-31 16:28
標題:
小星星 1
試運用巢狀迴圈完成以下圖案:
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(______________)
{
for(______________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳柏恩
時間:
2020-7-31 16: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<<"\n";
}
system("pause");
return 0;
}
複製代碼
作者:
林秉軒
時間:
2020-7-31 17:09
#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;
}
複製代碼
作者:
邱玟瑜
時間:
2020-7-31 17:10
#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<<"\n";
}
system("pause");
return 0;
}
複製代碼
作者:
樂柏謙
時間:
2020-7-31 17:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5; i++)
{
for(int x=1; x<=i ;x++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭軒濬
時間:
2020-7-31 17:14
#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;
}
複製代碼
作者:
何郡毓
時間:
2020-7-31 17:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=1; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王晏璿
時間:
2020-7-31 17:22
#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;
}
複製代碼
作者:
周秉融
時間:
2020-7-31 17:23
#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://seed.istak.org.tw/)
Powered by Discuz! 7.2