杭电ACM1021裴波纳挈数AGAIN

最后更新于:2022-04-01 09:47:40

~~~ #include<iostream> using namespace std; int main() { int n; while(cin>>n&&n < 1000000) if(n%8==2||n%8==6) cout<<"yes"<<endl; else cout<<"no"<<endl; return 0; } ~~~
';