0
点赞
收藏
分享

微信扫一扫

练习5-2 找两个数中最大者

钟罗敏 2022-01-31 阅读 92
int max(int a,int b){
	int max=a;
	if(a<b){
		max=b;
	}
	return max;
}
举报

相关推荐

0 条评论