Advertisement
Guest User

example1

a guest
Nov 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. include <iostream>
  2. include <string>
  3.  
  4. std::string out = {};
  5. for(int i = 0; i<5; i++)
  6. {
  7.     out += '*';
  8.     std::cout << out << std::endl;
  9. }
  10.  
  11. return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement