Learning by doing: Reading books and trying to understand the (code) examples
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
373 B

  1. #include <stdio.h>
  2. #include <string.h>
  3. int main (void) {
  4. float speed;
  5. float size;
  6. printf("Give download speed in Mbit/s: ");
  7. scanf("%f", &speed);
  8. printf("Give file size in Mbytes: ");
  9. scanf("%f", &size);
  10. printf("At %.2f megaits per second, a file of %.2f megabytes\n", speed, size);
  11. printf("downloads in %.2f seconds\n", size*8/speed);
  12. return 0;
  13. }