In this program, we are going to share how to print Floyd’s triangle using c++ programming language. If you are a beginner and want to start learning the c++ programming, then keep your close attention in this tutorial as I am going to share a c++ program to print Floyd’s triangle.
Copy the below C++ program and execute it with the help of C++ compiler. At the end of this program, We have shared the output of this program.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #include <iostream> using namespace std; int main() { int n, i, c, a = 1; cout << "Enter any number to print Floyd's triangle: "; cin >> n; for (i = 1; i <= n; i++) { for (c = 1; c <= i; c++) { cout << a; a++; } cout << endl; } return 0; } |
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.
Article Tags: c program, c program with output, c programs, c++ program to print patterns of numbers, c++ program to print pyramid of numbers, nested loop c++ shapes, write a program to print floyd's triangle in c++