標題:
小星星5
[打印本頁]
作者:
陳品肇
時間:
2018-11-23 22:37
標題:
小星星5
本帖最後由 陳品肇 於 2018-11-24 14:11 編輯
利用巢狀迴圈, 將符號*整齊排列成如下之三角形:
[attach]5340[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_____________)
{
for(_____________)
{
cout<<" ";
}
for(_____________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
趙一鳴
時間:
2018-11-24 13:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i,j,k;
for(i=1;i<=5;i++)
{
for(j=5;j>=i;j--)
{
cout<<" ";
}
for(k=1;k<=2*i-1;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
章幼莛
時間:
2018-11-24 13:58
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<=5-i;j++)
{
cout<<" ";
}
for(int j=1;j<=2*i-1;j++)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
回復
1#
陳品肇
作者:
洪寬瀧
時間:
2018-11-24 14:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int j,e,b;
for(j=1;j<=5;j++)
{
for(e=5;e>=j;e--)
{
cout<<" ";
}
for(b=1;b<=2*j-1;b++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2018-11-24 14:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=4;j>=i;j--)
{
cout<<" ";
}
for(int f=1;f<=i*2-1;f++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2018-11-24 14:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=5;j>=i;j--)
{
cout<<" ";
}
for(int a=1;a<=(i*2-1);a++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2018-11-24 14:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=5;j>=i;j--)
{
cout<<" ";
}
for(int a=1;a<=(i*2-1);a++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
周孫印
時間:
2018-12-1 12:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i,j,k;
for(i=1;i<=5;i++)
{
for(j=5;j>=i;j--)
{
cout<<" ";
}
for(k=1;k<=2*i-1;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2