Lucian_Adrian

Untitled

Sep 7th, 2021
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. long long i, j, n;
  8. char c;
  9. cin>>n>>c;
  10. for(i=1; i<=n; i++) {
  11. for(j=1; j<=i; j++)
  12. cout<<c;
  13. cout<<endl;
  14. }
  15. return 0;
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment