C语言初学者编程:使用C语言比较两个数的大小

2023-02-11 262 0

比较两数大小
1.利用if else输出较大值

#include<stdio.h>

int main()

{

int a=0,b=0 ;

scanf("%d%d", &a, &b);
if (a>b)

printf("%d", a);

else if (a<b)

printf("%d", b);

else

printf("相等\n");
system("pause");//防止窗口闪退
return 0;

}
2.直接利用比较运算符打印两个数的较大值

#include<stdio.h>
int main()

{

int a, b;
scanf("%d%d", &a, &b);
printf("%d", a > b ? a : b);
return 0;
system("pause");
}
3.用一个max函数比较两数大小

#include<stdio.h>
int max(int x, int y)//定义一个函数max
{
int c;
c = x > y ? x : y;
return c;
}
int main()
{

int a, b;
scanf("%d%d", &a, &b);
printf("%d\n",max(a,b));//调用max函数
system("pause");
return 0;

}
4.宏定义比较大小

#include<stdio.h>
#define MAX(a,b)((a) > (b) ? (a) : (b))//宏定义
int main()
{

int a, b;
scanf("%d%d", &a, &b);
printf("%d\n",MAX(a,b));//调用max函数
system("pause");
return 0;

}


相关文章

python中的列表(数组)知识点总结
switch与match的用法与区别
Python的if-elif分支语句运用-BIM计算器代码小项目
面试少儿编程老师
教师资格面试结构化中必须会说的十句
教师资格面试30条万用金句【必背5-10条】

发布评论

本站已加入BLOGS·CN