//A program to find the largest of three numbers #include void main() { int num1, num2, num3; //create three int variables to represent three numbers cout<< "Enter any three integers: "; //Ask the user to enter three numbers cin >> num1 >> num2 >>num3; //the user inputs the numbers int max = num1; //create another variable named max and initialize it to num1 if (num2 > max) max = num2; if (num3 > max) max = num3; cout<< "The maximum number is "<< max <