两个数比较,找出较大者
Posted duanqibo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个数比较,找出较大者相关的知识,希望对你有一定的参考价值。
/*
============================================================================
Name : test.c
Author : asdfasdf
Version :
Copyright : Your copyright notice
Description : 两个数比较,找出较大者,教材p143
============================================================================
*/
#include <stdio.h>
#include <stdlib.h>
int find_max(int x,int y)
if(x>y)
return x;
else
return y;
int main(void)
int a,b,max;
setbuf(stdout,NULL);
printf("\n请输入两个整数:");
scanf("%d%d",&a,&b);
max=find_max(a,b);
printf("两个数中较大的是:%d",max);
return 1;
以上是关于两个数比较,找出较大者的主要内容,如果未能解决你的问题,请参考以下文章
编写Java程序,比较两个数的大小,找出其中最大数与最小数,并输出最大数与最小数之差.
编写函数求两个整数 a 和 b 之间的较大值。要求不能使用if, while, switch, for, ?: 以 及任何的比较语句。