Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <conio.h>
  4.  
  5. using namespace std;
  6.  
  7. char znak = '*';
  8.  
  9.  
  10.  
  11. int main()
  12. {
  13. for (int i=1; i>=1; i++)
  14.  
  15. cout << znak << endl << " " << znak << endl << " " << znak << endl << " " << znak << endl << " " << znak << endl << " " << znak << endl << " " << znak << endl << " " << znak << endl << " " << znak << endl << " " << znak << endl << " " << znak << endl << " " << znak << endl;
  16.  
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement