本帖最後由 tonyh 於 2012-5-30 13:46 編輯
利用巢狀回圈, 將符號*整齊排列成如下之三角形:- #include <iostream>
- 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;
- }
複製代碼- #include<iostream>
- using namespace std;
- int main()
- {
- for(int i=1; i<=9; i+=2)
- {
- for(int j=1; j<=(9-i)/2; j++)
- {
- cout<<" ";
- }
-
- for(int k=1; k<=i; k++)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |