C++ program to find the largest number of a list of numbers entered through the keyboard

Program

#include<iostream.h>
#include<conio.h>

void main()
{
clrscr(); //to clear the screen
int i,n,x,large=0;

cout<<“How many numbers?”;
cin>>n;
for(i=0;i<n;++i)
{
cout<<“nEnter number “<<i+1<<“:”;
cin>>x;
if(x>large)
large=x;
}
cout<<“nnThe largest number is “<<large;
getch();
}

Output

C++ program to find the largest number of a list of numbers entered through the keyboard

Leave a Comment

error: Alert: Content is protected!!