標題:
小星星 5
[打印本頁]
作者:
張翼安
時間:
2015-11-21 01:07
標題:
小星星 5
利用巢狀回圈, 將符號*整齊排列成如下之三角形:
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_____________)
{
for(_____________)
{
cout<<" ";
}
for(_____________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-11-21 11:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i = 0; i < 5; i++)
{
for(int s = 0; s < 4 - i; s++)
{
cout<<" ";
}
for(int j = 0; j < i * 2 + 1; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-11-21 11:28
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int x=0;x<=4;x++)
{
for(int y=0;y<4-x;y++)
{
cout<<" ";
}
for(int z=0;z<2*x+1;z++)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-11-21 11:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0;i<5;i++)
{
for(int k=0;k<(4-i);k++)
{
cout<<" ";
}
for(int j=0;j<(i*2+1);j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2