Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
47143 | yuzhengxun | 练27.3 称心如意 | C++ | No Test Data | 0 MS | 0 KB | 172 | 2024-05-12 17:01:14 |
#include<bits/stdc++.h> using namespace std; int main() { int n; while(1){ cin>>n; if(n<=100&&n>=0){ cout<<n<<endl; return 0; } } return 0; }