| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144578 | 王峻熙 | 能否被3和5整除 | C++ | Compile Error | 0 MS | 0 KB | 198 | 2026-01-24 14:08:00 |
#include<iostream> using namespace std; int main(){ int m; cin>>m; if(m%3==0&&m%5==0){ cout<<"can"<<endl; } else{ cout<<"cannot"<<endl; return 0; }
Main.cc: In function 'int main()': Main.cc:12:1: error: expected '}' at end of input } ^