fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int t, x;
  5.  
  6. // Input the length of the track (t) and the distance the runner ran (x)
  7. printf("Enter the length of the track in meters (t): ");
  8. scanf("%d", &t);
  9.  
  10. printf("Enter the distance the runner ran in meters (x): ");
  11. scanf("%d", &x);
  12.  
  13. // Calculate the number of complete laps the runner ran
  14. int laps = x / t;
  15.  
  16. // Calculate the remaining meters to complete the next lap
  17. int remainingMeters = x % t;
  18.  
  19. // Output the result
  20. printf("The runner ran %d laps.\n", laps);
  21. printf("The runner needs %d more meters to complete the next lap.\n", t - remainingMeters);
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Enter the length of the track in meters (t): Enter the distance the runner ran in meters (x): The runner ran 0 laps.
The runner needs -1665048492 more meters to complete the next lap.