Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145765 潘明泽 能否被3和5整除 C++ Compile Error 0 MS 0 KB 213 2026-01-25 18:57:34

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int n1,n2,n3; int a[5005]; int main(){ cin>>n1; if(n1%3==0&&n1%5==0){ cout<<"can"; }esle{ cout<<"cannot"; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:9:6: error: 'esle' was not declared in this scope
     }esle{
      ^