Computer Science, asked by shaikhkashish1911, 6 months ago

print number from 100 to 1 in c++​

Answers

Answered by AnindaBasu
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