Advertisement
neistadt

Задача C.1.0.2. Конвертация скоростей

Sep 24th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.11 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main(){
  4.     float a;
  5.     scanf("%f", &a);
  6.     float k = a/3.6;
  7.     printf("%f\n", k);
  8.     return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement