Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128680 周民苡 满足条件的数 C++ Compile Error 0 MS 0 KB 242 2025-08-19 11:58:11

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c,x=2; cin>>a>>b>>c; wlire(1){ if(x%b=x%a=&&x%c==x%a) { cout<<x; } x++; } cout<<"hello"; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:6:12: error: 'wlire' was not declared in this scope
     wlire(1){
            ^
Main.cc:4:15: warning: unused variable 'x' [-Wunused-variable]
     int a,b,c,x=2;
               ^