这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
``` #include using namespace std; int main(){ int k,m,cnt=0; cin>>m>>k; do{ if(m%10==3){ cnt++; } m/=10; } while(m>0); if(cnt==k){ cout<<"YES"; }else{ cout<<"NO…
```cpp #include using namespace std; int main(){ int x; cin>>x; if((x%3&&x%5&&x%7)==0){ cout<<"3 5 7"; }else if((x%3&&x%5)==0||(x%3&&x%7)==0||(x%5&&x%7)==0){ if…
```cpp #include using namespace std; int main(){ int n,trse[101]; int mx=-1000001; cin>>n; for(int i=0;i >trse[i]; mx=max(mx,trse[i]); } int sum=0; for(int i=0;…