हिंदी

Write a program in C++ to read a set of 10 numbers from keyboard and findout largest number in the given array. - Computer Science 1

Advertisements
Advertisements

प्रश्न

Write a program in C++ to read a set of 10 numbers from keyboard and findout largest number in the given array.

उत्तर

//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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2016-2017 (March)

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×