Codeforces 1335B - Construct the String Solution

  1. Solution in C++:
  2. #include<bits/stdc++.h>
  3. using namespace std;
  4. int main()
  5. {
  6. int n,a,b,t,i;
  7. char c;
  8. while(cin>>t)
  9. {
  10. while(t--)
  11. {
  12. cin>>n>>a>>b;
  13. for(i=0; i<n; i++)
  14. {
  15. cout<<char('a'+i%b);
  16. }
  17. cout<<endl;
  18. }
  19. }
  20.  
  21. }

No comments

Most View Post

Recent post

RESTful APIs with CRUD Operations in Laravel 12| (2025)

  RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

Powered by Blogger.