Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144579 王峻熙 能否被3和5整除 C++ Accepted 0 MS 276 KB 205 2026-01-24 14:08:37

Tests(1/1):


Code:

#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; }