Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. string a="IME";
  8. int k=2;
  9.  
  10. for(int i=1; i<4; i++)
  11. {
  12. for(int j=1; j<k; j++)
  13. {
  14. cout<<a<<" ";
  15. }
  16. cout<<endl;
  17. k++;
  18. }
  19.  
  20. system("pause");
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement