MIPI_BaseC_WebinarFRTK/06_Lecture06/07_function_void_1_p21.c

19 lines
236 B
C
Raw Permalink Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
void max(void)
{
int a,b; //локальные переменные
scanf("%d%d",&a,&b);
if (a>b)
printf("%d\n",a);
else
printf("%d\n",b);
}
int main ()
{
max();
return 0;
}