Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
377516 徐嘉豪 【C1-10】大写字母 C++ 通过 100 4 MS 244 KB 227 2026-02-05 21:02:42

Tests(3/3):


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


测评信息: