Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
- int main()
- {
- float distance,volume,mcons;
- printf("Entre com a distancia percorrida : \n"); scanf("%f",&distance);
- printf("Entre com o volume de combistivel consumido : \n"); scanf("%f",&volume);
- mcons = distance/volume;
- printf("O carro teve consumo medio de %f kilometros por litro.\n",mcons);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment