Guest User

Untitled

a guest
Mar 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. x = 5
  2. print('#' * x)
  3.  
  4. for ( size_t ii = 0; ii < 5; ++ii )
  5. putchar('#');
  6.  
  7. int i, x = 5;
  8. for (i = 0; i < x; i++)
  9. printf("#");
  10.  
  11. int x=5;
  12.  
  13. printf("%.*sn", x, "###############################################");
  14.  
  15. p:printf("#");if(--x>0)goto p;
  16.  
  17. printf("%s",std::string(x,'#').c_str());
Add Comment
Please, Sign In to add comment