还是不对啊 大哥帮帮我啊 谢谢了
程序代码:
#include<stdio.h> int main(void) { int a,b,c,d, s=0; printf("please input four numbers\n"); scanf("%d%d%d%d",&a,&b,&c,&d); if (a==b) s++; if (a==c) s++; if (a==d) s++; if (b==c) s++; if (b==d) s++; if (c==d) s++; { if (s==1) printf("there are two same numebers"); else printf("the number is wrong"); } getchar(); getchar(); return 0; }