问题标题: 酷町堂:2427

0
0
已解决
崔皓博
崔皓博
新手光能
新手光能
  • #include<iostream> using namespace std; int main(){ int cnt=0,sum=0,t; do{ cin>>t; if(t%2==0){ cnt++; } if(t%2==1){ sum+=t; } }while(t!=0); cout<<cnt-1<<endl<<sum; return 0; }

0
已采纳
甄子烨
甄子烨
高级光能
高级光能

你为啥要用 do while()??

while不香吗?

而且最后输出只有一行,你为啥输出两个?

而且这个和%有什么关系?

不要瞎写啊!

还是说,你题目发错了?

我要回答