返回列表 發帖

[隋堂測驗]印數字(一)

本帖最後由 陳品肇 於 2019-7-20 11:39 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     for(int i=1;i<=5;i++)
  7.     {
  8.          for(int j=1;j<=i;j++)
  9.          {
  10.              cout<<j;
  11.          }
  12.          cout<<endl;
  13.     }
  14.    
  15.     for(int i=4;i>=1;i--)
  16.     {
  17.          for(int j=1;j<=i;j++)
  18.          {
  19.              cout<<j;
  20.          }
  21.          cout<<endl;
  22.     }
  23.     system("pause");
  24.     return 0;   
  25. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Jian-wei Wang

TOP

返回列表