0
已解决
李牧晓
中级天翼
中级天翼
题目链接: 酷町堂:3905
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
int sum=0;
while(n){
sum+=n%10;
n/=10;
}
if(sum%3==0){
cout<<"yes";
}
else{
cout<<"no";
}
return 0;
}
题目描述 Description
输入一个整数n(1~10^1000),判断它是不是3的倍数。
如果是输出"yes",否则输出"no"。
输入描述 Input Description
第一行输入一个整数n
输出描述 Output Description
输出判断的结果
样例输入 Sample Input
123
样例输出 Sample Output
yes
WA90代码
求哪里错了