fork download
  1. #include <stdio.h>
  2.  
  3. float dobro_do_maior(float x, float y) {
  4. return x > y ? x * 2 : y * 2;
  5. }
  6.  
  7. int main() {
  8. float a, b;
  9. printf("Digite dois numeros: ");
  10. scanf("%f", &a);
  11. scanf("%f", &b);
  12. printf("o dobro é %f\n", dobro_do_maior(a, b));
  13. }
  14.  
  15. //https://pt.stackoverflow.com/q/345773/101
Success #stdin #stdout 0s 9424KB
stdin
2
3
stdout
Digite dois numeros: o dobro é 6.000000