博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Program to Print Pascal Triangle
阅读量:5805 次
发布时间:2019-06-18

本文共 982 字,大约阅读时间需要 3 分钟。

Print Pascal Triangle in C++

To print pascal triangle in C++ programming, you have to ask to the user to enter the number of line (upto which he/she want to print pascal triangle).

So to print pascal triangle, you have to use three for loops as shown here in the following program.

C++ Programming Code to Print Pascal Triangle

Following C++ program ask to the user to enter number of line or row upto which the Pascal triangle

will be printed to print the Pascal triangle and display it on the screen:

 

#include <iostream>

using namespace std;

int main()

{
//
int i, n, c;
//
long fact(int n);
cout<<"Upto how many line (Enter number of rows) : ";
cin>>n;
//
for(i=0; i<n; i++)
{
//
for(c=0; c<=(n-i-2); c++)
{
cout<<" ";
}
//
for(c=0; c<=i; c++)
{
cout<<fact(i)/(fact(c)*fact(i-c));
cout<<" ";
}
cout<<"\n";
}
return 0;
}

//

long fact(int n)
{
int c;
long res=1;
//
for(c=1; c<=n; c++)
{
res = res*c;
}
return (res);
return 0;
}

转载于:https://www.cnblogs.com/poission/p/10905531.html

你可能感兴趣的文章
阿里云安全肖力:安全基础建设是企业数字化转型的基石 ...
查看>>
使用《Deep Image Prior》来做图像复原
查看>>
如何用纯 CSS 为母亲节创作一颗像素画风格的爱心
查看>>
Linux基础命令---rmdir
查看>>
优秀程序员共有的7种优秀编程习惯
查看>>
iOS sqlite3(数据库)
查看>>
粤出"飞龙",打造新制造广东样本
查看>>
编玩边学获数千万元A轮融资,投资方为君联资本
查看>>
开发者论坛一周精粹(第五十五期) 全站HTTPS之OSS教程 一次可以备案几个网站?...
查看>>
(干货)Linux学习资源推荐
查看>>
蓝图(Blueprint)详解
查看>>
Spark之SQL解析(源码阅读十)
查看>>
Android图片添加水印图片并把图片保存到文件存储
查看>>
C#字符串的不变性
查看>>
前端路由简介以及vue-router实现原理
查看>>
比特币系统采用的公钥密码学方案和ECDSA签名算法介绍——第二部分:代码实现(C语言)...
查看>>
分享15款很实用的 Sass 和 Compass 工具
查看>>
AMD优势: 与众不同 选择丰富
查看>>
玩转高性能超猛防火墙nf-HiPAC
查看>>
简单按日期查询mysql某张表中的记录数
查看>>