DawidKubiak

Zad.2

Mar 22nd, 2020
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. void GWIAZDKI (int a)
  5. {
  6.     for (int i=1; i<=30; i++)
  7.     cout << "*";
  8. }
  9. int main()
  10. {
  11.     int a=30;
  12.     GWIAZDKI (a);
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment