Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // 19. Indicar o maior de 2 números
- #include <stdio.h>
- #include <math.h>
- int main(void)
- {
- double a,b;
- printf("\nDigite dois numeros separados por espaço: ");
- scanf("%lf %lf",&a,&b);
- if (a>b)
- {
- printf("\nEntre %lf e %lf, o maior número é %lf.\n\n",a,b,a);
- }
- else
- {
- printf("\nEntre %lf e %lf, o maior número é %lf.\n\n",a,b,b);
- }
- }
- // FUNCIONA!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement