Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
99
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.  
  3. using namespace std;
  4.  
  5.  
  6. int main ()
  7. {
  8. int x;
  9. cout<<"ile gawiazdek mam wyswietlic?"<<endl;
  10. cin>>x;
  11. while(x>0)
  12. {
  13. cout<<"*"<<endl;
  14. x--;
  15. }
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24. return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement