Write a C++ programming to Print Floyd's Triangle.
Program Code:
#include<iostream>
using namespace std;
int main()
{
int n, i, j, k=1;
cout<<"Enter the number of rows to print Floyd's Triangle : ";
cin>>n;
cout<<endl;
cout<<" Floyd's Triangle : ";
cout<<endl;
for(i=1; i<=n; i++)
{
for(j=1; j<=i; j++)
{
cout<<k<<" ";
k++;
}
cout<<endl;
}
return 0;
}
The program output is tested on www.jdoodle.com
Output:
Enter the number of rows to print Floyd's Triangle : 6
Floyd's Triangle :
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
16 17 18 19 20 21
Thanks
Mukesh Rajput
Post A Comment:
0 comments: