Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
443862 任虞昊 【C1-10】大写字母 C++ 通过 100 1 MS 244 KB 165 2026-06-07 10:02:12

Tests(3/3):


#include <iostream> using namespace std; int main(){ char c; cin>>c; if(c>='A'&&c<='Z'){ cout<<c-'A'+1; } else{ cout<<"No"; } return 0; }


测评信息: