Practice Exercises Java - Learn to program performing exercises with Java

Practice Exercises Java

Learn to program performing exercises with Java

12 Lessons Java with the Solutions - 228 Exercises Java with the solutions
For Beginners, Intermediates and Advanceds


App Practice Exercises Java

The human knowledge belongs to the world
¡The infomation should be free!



Float, speed units - Practice Exercises Java


Lesson 3:

Basic data types


Exercise 3.10:

Float, speed units


Objetive:

Create a program to ask the user for a distance (in meters) and the time taken (as three numbers: hours, minutes, seconds), and display the speed, in meters per second, kilometers per hour and miles per hour (hint: 1 mile = 1609 meters).


Source Code:


import java.util.*;
public class Main
{
	public static void main(String[] args)
	{
		float distance;
		float hour, min, sec;

		float timeSec;
		float mps;
		float kph, mph;

		System.out.print("Enter distance(meters): ");
		distance = Float.parseFloat(new Scanner(System.in).nextLine());

		System.out.print("Enter timeSec(hour): ");
		hour = Float.parseFloat(new Scanner(System.in).nextLine());

		System.out.print("Enter timeSec(minutes): ");
		min = Float.parseFloat(new Scanner(System.in).nextLine());

		System.out.print("Enter timeSec(seconds): ");
		sec = Float.parseFloat(new Scanner(System.in).nextLine());

		timeSec = (hour * 3600) + (min * 60) + sec;
		mps = distance / timeSec;
		kph = (distance / 1000.0f) / (timeSec / 3600.0f);
		mph = kph / 1.609f;

		System.out.printf("Your speed in meters/sec is %1$s" + "\r\n", mps);
		System.out.printf("Your speed in km/h is %1$s" + "\r\n", kph);
		System.out.printf("Your speed in miles/h is %1$s" + "\r\n", mph);
	}
}
Exercisey 3.10




Privacy Policy:



Google uses associated advertising companies to serve ads when it visits our website. These companies may use the information they obtain from your visits to this and other websites (not including your name, address, email address, or phone number) to provide you with announcements about products and services that interest you. If you would like to learn more about this practice and know your options to prevent these companies from using this information. Click in... Privacy and Terms of Google.

Cookies

This site uses Google cookies to provide its services, to personalize advertisements and to analyze traffic. Google receives information about your use of this website. More information in... Privacy and Terms of Google.