Run ID Author Problem Lang Verdict Time Memory Code Length Submit Time
47140 C++|刘一阳 练27.3 称心如意 C++ No Test Data 0 MS 0 KB 231 2024-05-12 17:00:31

Tests(0/0):


#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; }