  
|
[隨堂練習]星星(四)
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- for(int i=1;i<=4;i++)//行數
- {
- for(int j=i;j<4;j++)//空白
- {
- cout << " ";
- }
- for(int k=1;k<=i;k++)//星星
- {
- cout << "* ";
- }
- cout<<endl;
- }
-
-
- system("pause");
- return 0;
- }
複製代碼 |
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
|