Advertisements
Advertisements
Question
Write a program in C++ to read a set of 10 numbers from keyboard and findout largest number in the given array.
Solution
//Program to find out largest number from the given array
#include<iostream.h>
int main ()
{
int num [10], max;
cout<<"Enter the 10 numbers";
for (int i = 0; i < 10; i++)
cin>>num [i];
max = num [0];
for (int j = 1; j<10;j++)
{
if(max<num [j])
max = num [j];
}
cout<<"The largest number in the array is " <<max;
}
shaalaa.com
C++ Programming
Is there an error in this question or solution?