标签:math.h code ret pid std class str out 坐标
#include<iostream>
#include<math.h>
using namespace std;
int main(){
int n, m;
cin>>n>>m;
for(int i=0; i<n; i++){
for(int j=0; j<m; j++){
char c='A'+abs(i-j);
cout<<c;
}
cout<<endl;
}
return 0;
}
??
字母的序号与两个坐标的差的绝对值有关。
标签:math.h code ret pid std class str out 坐标
原文地址:https://www.cnblogs.com/A-Little-Nut/p/10316846.html