Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
21339 dd 字符范围 C++ 通过 100 0 MS 672 KB 169 2021-12-18 15:21:34

Tests(10/10):


#include <iostream> using namespace std; int main() { char x; cin>>x; if(x>='0'&&x<='9') { cout<<(x-48)*5; } else { cout<<"No"; } return 0; }


测评信息: