自测没问题,但全是WA
蒟蒻代码:
#include<bits/stdc++.h> using namespace std; int x; int main(){ cin>>x; if(x%3==0){ if(x%5==0){ cout<<"Yes"; } else{ cout<<"No"; } } else{ cout<<"No"; } return 0; }
求调