Computer Science, asked by KarmaKaosKK, 7 months ago

Write a Program to accept 3 unequal numbers.Display the maximum number.

Answers

Answered by upadhyayyash02
0

Answer:

#include <iostream>

using namespace std;

int main()

{    

   int n1, n2, n3;

   cout << "Enter three numbers: ";

   cin >> n1 >> n2 >> n3;

   if(n1 >= n2 && n1 >= n3)

   {

       cout << "Largest number: " << n1;

   }

   if(n2 >= n1 && n2 >= n3)

   {

       cout << "Largest number: " << n2;

   }

   if(n3 >= n1 && n3 >= n2) {

       cout << "Largest number: " << n3;

   }

   return 0;

}

Explanation:

Similar questions