Simple C++ Program for Print Triangle Pattern Example
Simple C++ Program for Print Triangle Pattern
/*## Simple C++ Program for Print Triangle Pattern*/
/*## Basic Pattern Programs, Triangle Pattern C Programming*/
// Header Files
#include <iostream>
#include<conio.h>
using namespace std;
int main() {
// Declare Variables
int rows, i, j;
cout << "Simple C++ Program for Print Triangle Pattern\n";
//Read Day Value
cout << "Enter the number of rows : ";
cin>>rows;
//Print Triangle Pattern
for (i = 0; i < rows; i++) {
for (j = rows; j > i; j--) {
cout << " ";
}
for (int k = 1; k <= i + 1; k++) {
cout << " * ";
}
cout << "\n";
}
getch();
return 0;
}
Sample Output
Enter the number of rows : 8
*
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * * * *
C++ Pattern Example Programs
- Left Triangle C++ Example Program
- Simple C++ Program for Print Inverted Left Triangle Pattern
- Simple C++ Program for Print Triangle Pattern Example
- Simple C++ Program for Print Inverted Triangle Pattern
- Simple C++ Program for Print Pascal Triangle Pattern
- Simple C++ Program for Print Floyd Triangle Pattern
Read More Articles
- Simple Merge Sort Program in C++
- Scope Resolution Operator In C++
- Simple Program for Virtual Functions Using C++ Programming
- Simple Class Example Program For Find Prime Number In C++
- Simple Example Program For Parameterized Constructor In C++
- Define Constructor in Outside Class Example Program In C++
- Simple Example Program For Copy Constructor In C++
- Simple Program for Function Overloading Using C++ Programming
- Simple Program for Single Inheritance Using C++ Programming
- Simple Program for Inline Function without Class Using C++ Programming
- Factorial Using Function Example Program In C++
- Simple Example Program For Constructor Overloading In C++
- Simple Example Program For Constructor In C++
- Simple Addition ( Add Two Integers ) Example Program
- Simple Example Program for Inline Function Using C++ Programming
- Simple Program for Read user Input Using cin
- Factorial Using Loop Example Program In C++
- Simple Stack Program in C++ Programming
- Simple Program for Friend Function Using C++ Programming
- Simple Program for Static Data and Member Function Using C++ Programming
- Simple Program for Unary Operator Overloading Using C++ Programming
- Simple Program for Multiple Inheritance Using C++ Programming
- Do While Loop Example Program In C++
- Simple Copy Constructor Example Program For Find Factorial In C++
- Simple Program for Function Template Using C++ Programming