Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95692 欧阳俊懿 神秘数字 C++ Accepted 1 MS 272 KB 191 2024-11-01 20:12:17

Tests(10/10):


Code:

#include<iostream> using namespace std; int main() { int i; cin>>i; while(1) { i++; if(i%3==2&&i%5==3&&i%7==2) { cout<<i<<endl; break; } } return 0; }