美文网首页
基础练习 字母图形

基础练习 字母图形

作者: HeoLis | 来源:发表于2019-03-16 17:46 被阅读0次

http://lx.lanqiao.cn/problem.page?gpid=T7

#include <iostream>
using namespace std;
#define abs(x) ((x) > 0 ? (x) : (-x))
int main(){
    unsigned N(0), M(0);
    cin >> N >> M;
    for (unsigned i(0); i != N; ++i){
        for (unsigned j(0); j != M; ++j){
            int sub = i % 26 - j;
            cout << (char)(abs(sub) % 26 + 65);
        }
        cout << endl;
    }
    return 0;
}

相关文章

网友评论

      本文标题:基础练习 字母图形

      本文链接:https://www.haomeiwen.com/subject/buismqtx.html