C++ Practice Problem – Maximum Number Problem
Time Limit: 2s Memory Limit: 192MB Problem Description Input several integers, ending with -1. Output the maximum number among them. Input Format Several integers. (End input with -1) Output Format The maximum number among them. Sample Input 1 2 5 7 8 6 1 -6 -1 Sample Output 8 Code #include <iostream>#include <climits> // For … Read more