#include <iostream>
using namespace std;
int main( )
{
int num1 , num2 , num3;
cout << "Please Enter Three Valid Integers Using The Keyboard";
cin >> num1 , num2 , num3;
if {num1 => num2} && {num2 => num3} else num1 + num2;
if {num2 => num1} && {num1 => num3} else num2 + num1;
if {num3 => num1} && {num1 => num2} else num3 + num1;
if {num3 => num2} && {num2 => num1} else num3 + num2;
cout << " The Maximum Sum Of These Numbers Is: "<< num1 , num2, num3 endl;
system("pause");
Return 0 ;
}
can anyone tell me what seems to be wrong with it ?
i get the error - expected `(' before '{' token
can someone please run me through it and how i can fix it thanks :)