1 solutions

  • 1
    @ 2025-1-24 12:26:02

    输入一个整数,把他强制转换成字符型输出就可以了。
    代码:C++

    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int a;
        cin>>a;
        cout<<char(a);
        return 0;
    }
    
    • 1

    Information

    ID
    18810
    Time
    2000ms
    Memory
    1024MiB
    Difficulty
    1
    Tags
    (None)
    # Submissions
    2
    Accepted
    2
    Uploaded By