2 条题解
-
112337陈子函 (12337陈子函) LV 8 @ 2021-11-06 20:11:41
#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main()
{
char a;
cin>>a;
cout<<int(a);
return 0;
} -
02021-11-21 21:17:59@
#include <iostream>
using namespace std;
int main()
{
char ch;
int x;
cin>>ch;
x=ch+0;
cout<<x;
return 0;
}
- 1
信息
- ID
- 2306
- 难度
- 1
- 分类
- (无)
- 标签
- 递交数
- 148
- 已通过
- 119
- 通过率
- 80%
- 被复制
- 3
- 上传者