Advertisement
Guest User

Untitled

a guest
Sep 21st, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int liczba;
  6. do
  7. {
  8.  
  9. cout << "Podaj liczbe 123 aby zakonczyc program: ";
  10. cin >> liczba;
  11. liczba--;
  12. } while (liczba = 123);
  13. cout << "Koniec";
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement