题解 | #获取两数中的较大值#
获取两数中的较大值
http://www.nowcoder.com/practice/136bd5e1021d4d698b9f5227d7dfb684
看了·题想必大家都会把 不多解释了
#include using namespace std;
int main() {
// write your code here......
int a,b;
scanf("%d%d",&a,&b);
if(a>b)
printf("%d",a);
else
printf("%d",b);
return 0;
}