how to find the maximum of 10 numbers ?
Answers were Sorted based on User's Feedback
Answer / amrutha
int a[]=new int[10];
int max=a[0];
for(int i=0; i<10; i++)
{
if(a[i]>max)
{
max=a[i];
}
}
System.out.println("Maximum of 10 :" + max);
| Is This Answer Correct ? | 21 Yes | 8 No |
Answer / raj
int a[10],max=0;
cout<<"enter 10 numbers";
for(int i=0;i<10;i++)
{
cin>>a[i];
if(a[i]>max)
max=a[i];
}
cout<<"the maximum of entered 10 is"<<max;
| Is This Answer Correct ? | 9 Yes | 6 No |
Answer / namitha
#include<iostream.h>
main()
{
int a[10],n;
cout<<"enter ten numbers:\n";
for(int i=0;i<10;i++)
{
cin>>a[i];
}
int max=a[0];
for(i=0;i<10;i++)
{
if(a[i]>max)
max=a[i];
}
cout<<"the maximum number is:"<<max<<endl;
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / ahmed.aboelella
/**
As there is no need to save in array
Also we have to init max with first value to get max in case
user entered negative values
*/
#include "iostream"
using namespace std;
void main()
{
cout<<"Enter 10 numbers: ";
int i, temp, max;
//Enter first number to init max
cin>>max;
for(i = 0 ; i < 9; i ++)
{
cout<<"Enter Number: ";
cin>>temp;
max = temp > max ? temp : max;
}
cout<<"Max Number is "<<max<<endl;
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / prits
#include <iostream>
using namespace std;
void main()
{
int max = 0;
int arr[10];
cout<<"Enter 10 numbers"<<endl;
for(int i = 0; i<=10; i++)
{
cin>>arr[i];
}
for(int i = 0; i<=10; i++)
{
if(arr[i]>max)
max =arr[i];
}
cout<<"Maximun of the 10 numbers is "<<max<<endl;
}
| Is This Answer Correct ? | 4 Yes | 3 No |
If a header file is included twice by mistake in the program, will it give any error?
What will happen if a pointer is deleted twice?
what are the iterator and generic algorithms.
What do you know about near, far and huge pointer?
Explain the properties and principles of oop.
What are the basics concepts of OOPS?
Why is c++ still popular?
Which one is a preferred language C or C++? Why?
what is data abstraction in C++?
Can non graphic characters be used and processed in C++?
When there is a global variable and local variable with the same name, how will you access the global variable?
What is the full form of stl in c++?