Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
56297 | zhangweiran | 判断能否被3、5、7整除 | C++ | Accepted | 0 MS | 244 KB | 155 | 2024-11-10 11:33:24 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a%105==0){ cout<<"Yes"; return 0; } cout<<"No"; return 0; }