"KEEP LEARNING, DON'T STOP."
"KEEP LEARNING, DON'T STOP."
In this section you will learn how to print star in c++ in easy way. We will print the star with help of for loop condition and then we will show the output on screen. In this program we are taking the input from user.
first for loop to break the star print line and second for loop we will use inside the first for loop to print *.
#include<iostream.h> #include<conio.h> //STAR PATTERN PROGRAM void main() { int value, i, k; clrscr(); cout<<"ENTER NUMBER TO PRINT THE STAR:- "; cin>>value; for(i=1; i<=value;i++) { for(k=1; k<=i; k++) { cout<<"*"; } cout<<"\n"; } getch(); }
ENTER NUMBER TO PRINT THE STAR:- 5 * ** *** **** *****