当前位置:网站首页>C language foundation ----- write a function to find the larger value of two unequal integers
C language foundation ----- write a function to find the larger value of two unequal integers
2022-06-23 01:49:00 【coder--x】
The main function :
int main()
{
int a = 0;
int b = 0;
scanf("%d %d\n", &a &b);
int m = Max(a, b);
printf("%d\n",m);
return 0;
}The body part of the function :
int Max(int x, int y)
{
if(x > y)
return x;
else
return y;
}边栏推荐
- Install MySQL (5.7+8.0) through docker and configure master-slave replication (gtid+ enhanced semi synchronization)
- [learning notes] roll back Mo team
- ERROR { err: YAMLException: end of the stream or a document separator is expected at line 6, colum
- Summary of the first week of winter vacation
- Array part
- Detailed explanation of makefile usage
- HDU - 7072 double ended queue + opposite top
- 总体标准差和样本标准差
- What aspects of language and database knowledge are needed to build a web Kanban!
- Epoll introduction and principle explanation
猜你喜欢

The devil cold rice # 099 the devil said to travel to the West; The nature of the boss; Answer the midlife crisis again; Specialty selection

Use elk to save syslog, NetFlow logs and audit network interface traffic

Charles garbled code problem solving

There are animation characters interacting with each other when the mouse slides in the web page
![[Title Fine brushing] 2023 Hesai FPGA](/img/e8/d9d8c549a4fee529b69ebfc9a9d6ef.png)
[Title Fine brushing] 2023 Hesai FPGA

Module 8 job

9. class and object practice and initialization list

Ch340 and PL2303 installation (with link)
![[hdu] P6964 I love counting](/img/ff/f8e79d28758c9bd3019816c8f46723.png)
[hdu] P6964 I love counting

2D prefix and
随机推荐
//1.17 printf function
Day260: the number III that appears only once
Up the Strip
Exercise analysis summary
Module 8 job
SQL programming task03 job - more complex query
[Title Fine brushing] 2023 Hesai FPGA
Debian10 installing zabbix5.4
C. Unstable String
There are animation characters interacting with each other when the mouse slides in the web page
Data skew analysis of redis slice cluster
What aspects of language and database knowledge are needed to build a web Kanban!
C. Diluc and Kaeya——Codeforces Round #724 (Div. 2)
On AI and its future trend | community essay solicitation
9. class and object practice and initialization list
You can also do NLP (classification)
2D prefix and
278. digital combination
Branch and loop statements (including goto statements) -part2
OOP multiple storage (class template)