Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
123624 | 张唯一 | 能否被3和5整除 | C++ | Accepted | 1 MS | 268 KB | 223 | 2025-07-07 19:30:05 |
#include<iostream> using namespace std; int main() { int a; cin>>a; if(a%5==0) { if(a%3==0) { cout<<"can"; } else { cout<<"cannot"; } } else { cout<<"cannot"; } return 0; }