c++ Program to find the largest of Three Numbers 2022-09-28 #include using namespace std; int main() { int a, b, c, max; cout << " Enter Three Numbers : "; cin >> a >> b >> c; if((a > b) && (a > c)) { max = a; } else if((b > a) && (b > c)) { max = b; } else if((c > a) && (c > b)) { max = c; } cout << " The LARGEST Number is = " << max; } Twitter WhatsApp Telegram Facebook