Advertisement
Spocoman

01. Read Text

Sep 10th, 2023
662
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.80 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     string input;
  7.     cin >> input;
  8.  
  9.     while (input != "Stop") {
  10.         cout << input << endl;
  11.         cin >> input;
  12.     }
  13.  
  14.     return 0;
  15. }
  16.  
  17. Решение с for:
  18.  
  19. #include <iostream>
  20.  
  21. using namespace std;
  22.  
  23. int main() {
  24.     string input;
  25.     cin >> input;
  26.  
  27.     for (int i = 0; i < 2147483647; i++) {     // INT_MAX = 2147483647
  28.         if (input == "Stop") {
  29.             break;
  30.         }
  31.         cout << input << endl;
  32.         cin >> input;
  33.     }
  34.  
  35.     return 0;
  36. }
  37.  
  38. ИЛИ:
  39.  
  40. #include <iostream>
  41.  
  42. using namespace std;
  43.  
  44. int main() {
  45.     string input;
  46.     cin >> input;
  47.  
  48.     for (int i = 0; i < 2147483647 && input != "Stop"; i++) {  
  49.         cout << input << endl;
  50.         cin >> input;
  51.     }
  52.  
  53.     return 0;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement