標題:
小星星 1
[打印本頁]
作者:
tonyh
時間:
2016-10-29 14:45
標題:
小星星 1
本帖最後由 tonyh 於 2019-7-6 10:27 編輯
試運用巢狀迴圈完成以下圖案:
#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()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許紘誌
時間:
2016-10-29 14:53
#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;
}
複製代碼
作者:
黃宥鈞
時間:
2016-10-29 14:54
#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;
}
複製代碼
作者:
吳晉榕
時間:
2016-10-29 14:54
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=7; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡幸融
時間:
2016-10-29 14:55
#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;
}
複製代碼
作者:
曾彥翔
時間:
2016-10-29 14:55
#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;
}
複製代碼
作者:
蕭澧邦
時間:
2016-10-29 14:57
本帖最後由 蕭澧邦 於 2016-10-29 15:01 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=5; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪榜蔓
時間:
2016-10-29 14:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=1000; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
朱聿謙
時間:
2016-10-29 15:00
#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;
}
複製代碼
作者:
譚暐霖
時間:
2016-11-2 17: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