Computer Science, asked by sam22006, 11 months ago

write a program in c++with for loop to enter 10 no. and print the max no. ​

Answers

Answered by pranay202
0
  1. Explanation:

#include<iostream.h>

#include<conio.h>

void main()

{

int i;

clrscr ( );

for ( i=1;i<=10;i++)

{

cout<<"\n i="<<i;

}

getch ( );

}

Similar questions