fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. string replicate(string s = "x", int r = 1)
  7. {
  8. string t;
  9. while(r--)
  10. t += s;
  11. return t;
  12. }
  13.  
  14. int main()
  15. {
  16. string pattern = "a";
  17. cout << replicate(pattern);
  18. }
  19.  
  20.  
Success #stdin #stdout 0.01s 5224KB
stdin
Standard input is empty
stdout
a