標題:
小星星 1
[打印本頁]
作者:
tonyh
時間:
2016-4-30 11:24
標題:
小星星 1
本帖最後由 tonyh 於 2018-6-20 17:08 編輯
試運用巢狀迴圈完成以下圖案:
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(______________)
{
for(______________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
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-4-30 11:33
#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-4-30 11:33
#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-4-30 11:33
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int k=1; k<=i; k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陸長辰
時間:
2016-4-30 11:34
#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-4-30 11:34
#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-4-30 11:38
#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-5-2 20:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
for(int a=1; a<=5; a++)
{
for(int b=1; b<=a; b++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
方宥鈞
時間:
2016-5-2 20:46
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int k=1;k<=i;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2