Write a program to read two numbers from the keyboard and display the larger value on the screen
#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 |
Write a program that can take input from 3 to 8 and calculate the average?
What is a COPY CONSTRUCTOR and when is it called?
What is a virtual base class?
What is partial specialization or template specialization?
Define type casting in C++.
When must you use a constructor initializer list?
What is wrong with this statement? std::auto_ptr ptr(new char[10]);
What is pass by value & reference.
What is the difference between member functions and static member functions?
What is a memory leak in C++?
Tell me about virtual function
What is conversion constructor in C++