Run ID Author Problem Lang Verdict Time Memory Code Length Submit Time
32572 chenyifei 判断能否被3、5、7整除 C++ Accepted 0 MS 240 KB 158 2023-12-01 22:05:18

Tests(2/2):


#include<iostream> using namespace std; int main() { int n; cin>>n; if(n%3==0&&n%5==0&&n%7==0){ cout<<"Yes"; } else cout<<"No"; return 0; }


Judgement Protocol: