標題:
小星星 5
[打印本頁]
作者:
tonyh
時間:
2014-11-1 10:31
標題:
小星星 5
本帖最後由 tonyh 於 2014-11-8 10:57 編輯
利用巢狀回圈, 將符號*整齊排列成如下之三角形:
[attach]1050[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_____________)
{
for(_____________)
{
cout<<" ";
}
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<=5-i; j++)
{
cout<<" ";
}
for(int k=1; k<=2*i-1; k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2014-11-1 10:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_____________)
{
for(_____________)
{
cout<<" ";
}
for(_____________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2014-11-1 10:43
#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 v=1; v<=2*i-1; v++)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2014-11-1 10:45
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int a=1; a<=5; a++)
{
for(int b=1; b<=5-a; b++)
{
cout<<" ";
}
for(int c=1; c<=2*a-1; c++)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2014-11-1 10:51
#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 h=1; h<=2*i-1; h++)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2014-11-1 10:53
#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 e=1; e<=2*i-1; e++)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2014-11-4 19:29
#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 k=1; k<=i*2-1; k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2