返回列表 發帖

[隨堂練習]星星(四)

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      for(int i=1;i<=4;i++)//行數
  7.      {   
  8.          for(int j=i;j<4;j++)//空白
  9.          {
  10.              cout << " ";
  11.          }
  12.          for(int k=1;k<=i;k++)//星星
  13.          {
  14.              cout << "* ";
  15.          }
  16.          cout<<endl;
  17.      }
  18.      
  19.      
  20.    system("pause");
  21.    return 0;  
  22. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表