Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. float a;
  6. float b;
  7. printf("podaj wartosc wspolczynnika a\n");
  8. scanf("%f",&a);
  9. printf("podaj wartosc wspolczynnika b\n");
  10. scanf("%f",&b);
  11. float result = a/b;
  12. printf("%f",result);
  13. return 0;
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement