Files
sibsutis/proglabs/lab7/5.c
T
Павел Родионов 2fca7b75f5 1
2025-11-13 18:21:23 +07:00

18 lines
324 B
C

#include <stdio.h>
double larger_of(double a, double b);
int main() {
double a,b,c;
printf("Print: num1 num2\nPrint: ");
scanf(" %lf %lf",&a,&b);
c = larger_of(a,b);
a = c;
b = c;
printf("Larger value is: %lf",a);
return 0;
}
double larger_of(double a, double b){
return ((a>b)?a:b);
}