Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <maxmin.h>
- int main (void)
- {
- float a, b, max, min;
- scanf("Escribe dos numeros %f %f", &a, &b);
- max=maximo (a, b);
- min=minimo (a, b);
- printf("/nEl maximo es: %f", max);
- printf("/nEl minimo es: %f", min);
- return();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement