QN. 1 Write a program that will accept up to 10 integers. The program compares the numbers to determine which is maximum and which one is minimum. At the end the program outputs the minimum number entered and maximum number entered.
ANSWER
#include<iostream.h>
#include<conio.h>
void main(){
int n;
...