用C语言输入任意一组数,以0结束,写一程序判断该组数中数据的奇偶...
发布网友
发布时间:2024-01-17 13:58
我来回答
共3个回答
热心网友
时间:2024-04-06 10:15
#include <stdio.h>
int main()
{
int x;//直接选为int型整数
while(1) {
scanf("%d", &x);
if(x == 0)
break;
if(x>1 && x%2==0)
printf("偶数\n");
else
printf("奇数\n");
}
return 0;
}
热心网友
时间:2024-04-06 10:11
int i;
while(1)
{
printf(“input a value”);
scanf(“%d”,&i);
if(i!=0&&i>0)
{
if(i%2==0)
printf(“%d is a even number”,i);
else
printf(“%d is not a even number”,i);
}
else if(i<0)
printf("warning!the value of i should not smaller than zero");
else
break;
}
热心网友
时间:2024-04-06 10:14
int a;
scanf("%d",&a);
while(a!=0){
if(a%2==0) printf("偶");
else printf("奇");
scanf("%d",&a);
}