26个兄弟姐妹2

26个兄弟姐妹2

GESP二级ASCII基础练习,难度★☆☆☆☆。

bcqm-3150

题目要求

题目描述

26个字母26枝花,26个兄弟姐妹是一家,大写字母与小写字母不分家。试编一程序,按顺序输出26个小写英文字母,再按逆序输出26个大写字母。

输入格式

输出格式

2 行,第一行按顺序输出26个小写英文字母。第二行按逆序输出26个大写字母。

样例输入 #1

样例输出 #1

a b c d e f g h i j k l m n o p q r s t u v w x y z
Z Y X W V U T S R Q P O N M L K J I H G F E D C B A

题目分析

写死输出显然不是出题者意图。根据ASCII规则,循环ASCII码对应的数字,然后转换成char,输出对应的英文字符即可。

{% include custom/custom-post-content-inner.html %}

示例代码

#include <iostream>
using namespace std;
int main() {
    int a = 97;
    for (int i = 0; i < 26; i++) {
        cout << (char)a << " ";
        a += 1;
    }
    cout << endl;
    int b = 90;
    for (int i = 26; i > 0; i--) {
        cout << (char)b << " ";
        b -= 1;
    }
    return 0;
}

{% include custom/custom-post-content-footer.md %}

所有代码已上传至Github:https://github.com/lihongzheshuai/yummy-code

luogu-”系列题目可在 洛谷题库 在线评测。

bcqm-”系列题目可在 编程启蒙题库 在线评测。

GESP/CSP 认证学习微信公众号
GESP/CSP 认证学习微信公众号
Last updated on