Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- import java.io.*;
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args) throws IOException {
- Scanner scanner = new Scanner(System.in);
- int speed;
- int time;
- System.out.print("Please, give speed of the vehicle: ");
- speed = scanner.nextInt();
- System.out.print("Now time it took to get to the destination: ");
- time = scanner.nextInt();
- System.out.println("Hour\tDistance Traveled");
- System.out.println("----------------------------");
- for (int i = 1; i <= time; i++)
- {
- System.out.println(i + "\t\t\t\t" + (i * speed));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment