Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
B_141209_EsMayor
//Title of this code #include <stdio.h> double esmayor(double a, double b); int main(void) { double x, y; printf("\nValor de x ... "); scanf(" %lf", &x); printf("\nValor de y ... "); scanf(" %lf", &y); printf("\n\nEl mayor es ... %lf\n\n", esmayor(x,y)); return 0; } double esmayor(double a, double b) { return a > b ? a : b; }
run
|
edit
|
history
|
help
0
Stub Program for Problem 4 HW 2
loop
Spring 2017 Project 2 v1.2
print name
B_141107_Factorial
Project 4 v1.1
Nice1
No Pyramid toggle
simple insertion sort
Project 3 Part 1 v1.7