4 solutions
- 1
Information
- ID
- 4860
- Time
- 1000ms
- Memory
- 128MiB
- Difficulty
- 1
- Tags
- # Submissions
- 47
- Accepted
- 24
- Uploaded By
#include<bits/stdc++.h>
using namespace std;
int main(){
int x;
cin>>x;
for(int i=0;i<x;i++){
for(int j=i;j<i+x;j++){
char danci=j%26+'A';
cout<<danci;
}
cout<<endl;
}
return 0;
}
By signing up a HydroOJ universal account, you can submit code and join discussions in all online judging services provided by us.