中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++楊輝三角代碼怎么寫

c++
小億
90
2024-04-26 16:39:44
欄目: 編程語言

#include using namespace std;

int main() { int numRows;

cout << "Enter the number of rows for Pascal's Triangle: ";
cin >> numRows;

int triangle[numRows][numRows];

for (int i = 0; i < numRows; i++) {
    triangle[i][0] = 1;
    triangle[i][i] = 1;
}

for (int i = 2; i < numRows; i++) {
    for (int j = 1; j < i; j++) {
        triangle[i][j] = triangle[i-1][j-1] + triangle[i-1][j];
    }
}

cout << "Pascal's Triangle:" << endl;
for (int i = 0; i < numRows; i++) {
    for (int j = 0; j <= i; j++) {
        cout << triangle[i][j] << " ";
    }
    cout << endl;
}

return 0;

}

0
泰顺县| 饶河县| 盐亭县| 兴海县| 区。| 调兵山市| 惠水县| 宜兰县| 云霄县| 陕西省| 普陀区| 永丰县| 蓬溪县| 资讯| 姜堰市| 五常市| 沂水县| 六盘水市| 大理市| 文昌市| 漯河市| 柘荣县| 隆化县| 鲁山县| 安溪县| 桃园市| 新化县| 诸暨市| 吴旗县| 青冈县| 区。| 贵溪市| 花莲县| 诸城市| 桦南县| 三穗县| 朝阳市| 邵东县| 都兰县| 印江| 牙克石市|