Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
32960 | 闻航 | 判断一个数能否同时被3和5整除 | C++ | Accepted | 0 MS | 240 KB | 180 | 2023-12-03 18:33:11 |
#include<iostream> using namespace std; int main() { int n; cin>>n; if(n%3==0&&n%5==0) { cout<<"YES"; }else{ cout<<"NO"; } return 0; }