摘要: 练习6-1 /* 求两个整数中的最小值 */ #include <stdio.h> /* 返回三个整数中的最小值 */ int min2(int a, int b) { int min = a; if (b < min) min = b; return min; } int main(void) { 阅读全文
posted @ 2019-11-14 18:08 nightswatch-candle 阅读(3456) 评论(1) 推荐(1)