print number from 100 to 1 in c++
Answers
Answered by
1
Answer:
#include<iostream.h>
#include<conio.h>
void main()
{
int i;
clrscr();
cout<<"range are :- ";
for(i=100;i>=1;i--)
{
cout<<i;
}
getch();
}
Similar questions