MarcinKrol

Zad2

Mar 24th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. //Zad2
  4.  
  5. using namespace std;
  6.  
  7. void Gwiazdki ()
  8. {
  9. for(int i=1;i<=30;i++)
  10.  
  11. cout<<"*";
  12.  
  13.  
  14. }
  15.  
  16. int main()
  17. {
  18. Gwiazdki();
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment