Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
55922 | 该账号已封禁 | 判断能否被3、5、7整除 | C++ | Accepted | 0 MS | 252 KB | 200 | 2024-11-08 16:12:52 |
#include<iostream> using namespace std; int main() { int x,p; cin>>x; p=x%105; if (p==0){ cout<<"Yes"; } else{ cout<<"No"; } return 0; }