|
[隨堂測驗] 小星星 6
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- for(int i=1;i<=5;i++)
- {
- for(int j=1;j<i;j++)
- {
- cout<<" ";
- }
-
- // 偶數 你要變成 奇數 (某數*2-1)
- for(int x=9;x>=i*2-1;x--)
- {
- cout<<"*";
- }
- cout<<endl;
- }
-
- system("pause");
- return 0;
- }
複製代碼 |
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
|