Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
8538 | 毕潇天 | 判断能否被3,5,7整除 | C++ | Accepted | 1 MS | 260 KB | 252 | 2023-02-10 15:56:42 |
#include <iostream> using namespace std; int main() { int a; cin >> a; if(a%3==0){ cout << 3 << " "; } if(a%5==0){ cout << 5 << " "; } if(a%7==0){ cout << 7; } if(a%3!=0&&a%5!=0&&a%7!=0){ cout << "n"; } return 0; }