Write a program to read two numbers from the keyboard and display the larger value on the screen



Write a program to read two numbers from the keyboard and display the larger value on the screen..

Answer / hr

#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
float a,b;
cout<<" Enter two values :"<<endl;
cin>>a>>b;
if(a>b)
cout<<" larger value = "<<a<<endl;
else
cout<<" larger value = "<<b<<endl;
return 0;
}
OUTPUT:
Enter two values:10 20
Larger value:20

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C++ Interview Questions

Write a program that can take input from 3 to 8 and calculate the average?

0 Answers   Accenture,


What is a COPY CONSTRUCTOR and when is it called?

0 Answers   IBS,


What is a virtual base class?

6 Answers   Fidelity, Siemens,


What is partial specialization or template specialization?

0 Answers   Amazon,


Define type casting in C++.

0 Answers   Amdocs,


When must you use a constructor initializer list?

0 Answers   Amazon,


What is wrong with this statement? std::auto_ptr ptr(new char[10]);

0 Answers   Amazon,


What is pass by value & reference.

0 Answers   Accenture,


What is the difference between member functions and static member functions?

0 Answers   Alter,


What is a memory leak in C++?

0 Answers   Agilent,


Tell me about virtual function

1 Answers  


What is conversion constructor in C++

0 Answers   TCS,


Categories