Екі санның үлкенін табу процедурасын тап!
#include<conio.h>
#include<stdio.h>
#include<math.h>
float maxsim(float A,float B){
float res;
if (A>B) res=A;
else res=B;
return res;
}
main(){
float A,B;
printf("A manin engiz->");
scanf("%f",&A);
printf("B manin engiz->");
scanf("%f",&B);
printf("MAX=%3.2f",maxsim(A,B));
getch();
}
