Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
47140 | C++|刘一阳 | 练27.3 称心如意 | C++ | 无测评数据 | 0 MS | 0 KB | 231 | 2024-05-12 17:00:31 |
#include<iostream> using namespace std; int main() { int score; while(1){ cin>>score; if(score>=0&&score<=100){ cout<<"成绩:"<<score<<endl; return 0; } } return 0; }