> 其他 >
在C语言中 怎样判断三位数中有相同的数字?
人气:204 ℃ 时间:2020-01-19 23:41:52
解答
int X=123;
int a,b,c;
a=X/100;
b=X/10%10;
c=X%10;
if(a==b || a==c || b==c)
print("There are same nums");
推荐
猜你喜欢
© 2024 79432.Com All Rights Reserved.
电脑版|手机版