Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- using namespace std;
- int main() {
- string input;
- cin >> input;
- int bigNum = (-2147483647 - 1); // INT_MIN
- while (input != "Stop") {
- int n = stoi(input);
- if (n > bigNum) {
- bigNum = n;
- }
- cin >> input;
- }
- cout << bigNum << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement