MIPI_BaseC_WebinarFRTK/06_Lecture06/05_function_1_p19.c

16 lines
253 B
C
Raw Permalink Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
int max (int a, int b)
{
if (a>b)
return a;
return b; // Здесь можно обойтись без else
}
int main ()
{
int a,b;
scanf ("%d%d", &a,&b);
printf ("max = %d\n", max(a,b));
return 0;
}