Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
47294 | sunhuifeng | 练27.3 称心如意 | C++ | No Test Data | 0 MS | 0 KB | 167 | 2024-05-14 20:41:10 |
#include<iostream> using namespace std; int main(){ int a; while(1){ cin>>a; if(a>=0&&a<=100){ cout<<"成绩:"<<a; break; } } return 0; }