本帖最後由 歐柏罕 於 2017-11-27 20:29 編輯
提示- #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 < i;j++)
- {
- cout << " ";
- }
- for(int k=11;k>i*2;k--)
- {
- 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<i;j++)
- {
- cout<<" ";
- }
- for(int k=1;k<=11-(i*2);k++)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |