Advertisement
desislava_topuzakova

01. Read Text

Feb 4th, 2024
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. //не знаем колко точно пъти искаме да повтаряме действието -> while
  7. //1. какво повтаряме: четем текст -> отпечатваме текст
  8. //2. стоп: въведения текст == "Stop"
  9. //3. продължаваме: въведения текст != "Stop"
  10.  
  11. string text;
  12. cin >> text;
  13.  
  14. while (text != "Stop")
  15. {
  16. cout << text << endl;
  17. cin >> text;
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement