"KEEP LEARNING, DON'T STOP."
"KEEP LEARNING, DON'T STOP."
In this section you will learn how to print number in c++ in easy way. We will print the number 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> //NUMBER PATTREN 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<<i; } cout<<"\n"; } getch(); }
ENTER NUMBER TO PRINT THE NUMBER:- 5 1 22 333 4444 55555