返回列表 發帖

[挑戰題13] 數字塔 2

本帖最後由 陳育霖 於 2024-6-22 19:41 編輯

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i = 5; i > 0; i--)
  7.     {
  8.         for(int j = i; j <= 5; j++)
  9.         {
  10.              cout<<j;
  11.         }
  12.         cout<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表