| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 32264 | 闻航 | 判断能否被3,5,7整除 | C++ | Accepted | 0 MS | 240 KB | 235 | 2023-11-26 19:40:50 |
#include<iostream> using namespace std; int main() { int n; cin>>n; if(n%3==0) { cout<<"3"; } if(n%5==0) { cout<<" 5"; } if(n%7==0) { cout<<" 7"; } return 0; }