Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
5297 | 张然正 | 天问一号 | C++ | Wrong Answer | 0 MS | 248 KB | 326 | 2023-01-15 10:08:50 |
#include <iostream> using namespace std; int main() { int speed; cin >> speed; if (speed = 0) { cout << "4"; } else if (speed < 10) { cout << "3"; } else if (speed < 100) { cout << "2"; } else { cout << "1"; } return 0; }