C++ Program To Find Greatest Among Three Numbers
belongs to collection: If / Else Statement Programs in C ++ Prpgramming
All Answers
                                        need an explanation for this answer? contact us directly to get an explanation for this answer
                                        
                                #include<iostream>
using namespace std;
int main()
{
   double num1, num2, num3;
    cout<<"Enter Three Numbers: \n";
    cin>>num1>>num2>>num3;
   if (num1 > num2 && num1 > num3)
      cout<<"\nGreatest Number Is :"<<num1;
   else if (num2 > num3 && num2 > num1)
      cout<<"\nGreatest Number Is :"<<num2;
   else if (num1 > num1 && num3 > num2)
      cout<<"\nGreatest Number Is :"<<num1;
      
   else if ((num1==num2) && (num2==num3) && (num3==num1))
     cout<<"\nAll Are Equal"; 
   
}
Output:
Enter Three Numbers:
456
321
789
789 Is The Largest Number
need an explanation for this answer? contact us directly to get an explanation for this answertotal answers (2)
 
                         
        
 
     C++ programming
C++ programming
the correct answer is:
need an explanation for this answer? contact us directly to get an explanation for this answer