Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3.  
  4. using namespace std;
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8.  
  9. int i,j;
  10. for (i=0;i<1;i++)
  11. cout << " # ";
  12. cout << endl;
  13. for (j=0;j<=1;j++)
  14. {
  15. cout << " # ";
  16. cout << endl;
  17. if (j==1)
  18. {
  19. cout<<"#############"<<endl;
  20. for (i=0;i<1;i++)
  21. cout << " # ";
  22. cout << endl;
  23. for (j=0;j<=1;j++)
  24. {
  25. cout << " # ";
  26. cout << endl;
  27. }
  28. }
  29.  
  30. }
  31. system("PAUSE");
  32. return 0;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement