iT邦幫忙

0

c++初學者

  • 分享至 

  • xImage

如果cin一個整數,將數字排成金字塔的型狀。例如:cin=3,
1
1 2 (輸出)
1 2 3

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中
2
小魚
iT邦大師 1 級 ‧ 2019-09-20 17:55:37

請先借本書來看.

哈哈哈哈哈哈

0
海綿寶寶
iT邦大神 1 級 ‧ 2019-09-20 17:59:53
#include <iostream>

using namespace std;

int main()
{
    int cnt;
    cin >> cnt;
    for (int r=1;r<=cnt;r++) {
       for (int c=1;c<=r;c++) {
           cout << c << " ";
       }
       cout << endl;
   }
   return 0;
}
1
wrxue
iT邦好手 1 級 ‧ 2019-09-20 21:48:01

這手伸太長了吧

小魚 iT邦大師 1 級 ‧ 2019-09-21 14:51:06 檢舉

下次會不會來問,
請問要怎麼去圖書館借書?

賽門 iT邦超人 1 級 ‧ 2019-09-27 08:36:38 檢舉

No, 什麼是圖書館?

不明
【**此則訊息已被站方移除**】
0
阿展展展
iT邦好手 1 級 ‧ 2019-10-08 22:21:29

if(n=1)
cout << 1;

if(n=2){
cout << 1;
cout << endl;
cout << 2;
}

if(n=3){
cout << 1;
cout << endl;
cout << 2;
cout << endl;
cout << 3;
}

if(n=4){
cout << 1;
cout << endl;
cout << 2;
cout << endl;
cout << 3;
cout << endl;
cout << 4;
}

我要發表回答

立即登入回答