C语言程序:找出两个整数中较大的数
#include <stdio.h>
int main() {
int a, b;
printf('请输入两个整数:');
scanf('%d %d', &a, &b);
if (a > b) {
printf('%d
', a);
} else {
printf('%d
', b);
}
return 0;
}
原文地址: https://www.cveoy.top/t/topic/nwjv 著作权归作者所有。请勿转载和采集!