Advertisement
Avdluna

Velocidade

Aug 24th, 2015
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.    float m,k;
  7.  
  8.         scanf("%f", &m);
  9.  
  10.             k = m*1.6;
  11.  
  12.         printf("%.1f\n", k);
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement