#include
int main()
{
int k,d=0,s=0;
scanf("%d",&k);
while(k != -1)
{
if(k % 2 >0)
{
d++;
}else if(k % 2 == 0)
{
s++;
}
scanf("%d",&k);
}
printf("单数有%d",d);
printf("双数有%d",s);
return 0;
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)