标签:== names esc 注意 lse board create clu color
题目链接:https://ac.nowcoder.com/acm/contest/992/H
多组输入(不多于10组),每行一个整数n(0 <= n <= 100)。
对于每组数据,输出一个(2n+1)*(2n+1)的字母矩阵。
abc fed ghi abcde jihgf klmno tsrqp uvwxy abcdefg nmlkjih opqrstu bazyxwv cdefghi ponmlkj qrstuvw
思路:矩阵输出,注意细节
// // Created by hanyu on 2019/7/14. // #include<bits/stdc++.h> using namespace std; int main() { int n; int N; while(~scanf("%d",&n)) { int res=97; int str[205][205]; N = 2 * n + 1; for(int i=1;i<=N;i++) { if(i%2==1) { for(int j=1;j<=N;j++) { str[i][j]=res; res++; if(res==123) res=97; } } else { for(int j=N;j>=1;j--) { str[i][j]=res; res++; if(res==123) res=97; } } } for(int i=1;i<=N;i++) { for(int j=1;j<=N;j++) { printf("%c",str[i][j]); } printf("\n"); } } return 0; }
标签:== names esc 注意 lse board create clu color
原文地址:https://www.cnblogs.com/Vampire6/p/11187978.html