Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class WorldSwimmingRecord {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- double record = Double.parseDouble(scanner.nextLine());
- double distance = Double.parseDouble(scanner.nextLine());
- double secondsToMeter = Double.parseDouble(scanner.nextLine());
- double score = distance * secondsToMeter + Math.floor(distance / 15) * 12.5;
- if (score >= record) {
- System.out.printf("No, he failed! He was %.2f seconds slower.", score - record);
- } else {
- System.out.printf("Yes, he succeeded! The new world record is %.2f seconds.", score);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement