Guest User

Untitled

a guest
Feb 22nd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. double a,b;
  6. scanf("%lf", &a);
  7. scanf("%lf", &b);
  8. printf("%.9lf" ,a/b);
  9. return 0;
  10. }
Add Comment
Please, Sign In to add comment