Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 249 Bytes

B2018.md

File metadata and controls

26 lines (17 loc) · 249 Bytes

B2018 Python3C++代码对比

C++ 代码

#include<bits/stdc++.h>
using namespace std;
int main(){
    int a;
    cin>>a;
    cout<<(char)a<<endl;    
}
```cpp

 ***

## Python 代码

```py


a=int(input())
print(chr(a))
```py