7-22 用天平找小球

六眼飞鱼酱① 提交于 2019-12-12 12:43:33

 1 #include <stdio.h>
 2 
 3 int main(void)
 4 {
 5     int a, b, c;
 6     char other;
 7 
 8     scanf("%d %d %d", &a, &b, &c);
 9 
10     if (a == b)
11     {
12         other = 'C';
13     }
14 
15     if (a == c)
16     {
17         other = 'B';
18     }
19 
20     if (b == c)
21     {
22         other = 'A';
23     }
24 
25     putchar(other);
26 
27     return 0;
28 }
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!