Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144804 c13 能否被3和5整除 C++ Accepted 0 MS 260 KB 177 2026-01-24 18:53:27

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int t; scanf("%d", &t); if(t%3==0&&t%5==0)cout<<"can"<<endl; else cout<<"cannot"<<endl; return 0; }