1 条题解
-
1240735zj赵拙言 (赵拙言) LV 7 @ 2024-09-14 22:47:52
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
int ans=0;
for(int i=1;i<=n;i++){
int x;
cin>>x;
int tot=0;
while(x){
tot+=(x%10);
x/=10;
}
if(tot%7==0)cout<<"Yes\n";
else cout<<"No\n";
}
return 0;
}
- 1
信息
- ID
- 2805
- 难度
- 6
- 分类
- (无)
- 标签
- 递交数
- 57
- 已通过
- 14
- 通过率
- 25%
- 上传者