CS 570: Programming Foundations Homework Assignment #2  Solved

25.00 $

Category: Tags: , , , , , ,
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

5/5 - (2 votes)

Compiling and running your programs from the command-line.

In this assignment we will practice compiling and running our programs on the command-line.  By now, you should have downloaded and installed the Java Standard Edition Development Kit (JDK) on your computer.

JDK does not provide an editor so you will need to type your programs in a text editor (for example NotePad in Windows or TextEdit in OS X).  Once you have typed your code and saved your file with .java extension you will need to bring up and work in a Command Prompt (Windows), Terminal (OS X) or shell (Linux) window.

You will use the javac and java commands to compile and execute your programs, as we did in class.

Windows users

Here is a video tutorial that will walk you through the steps you need to follow:  https://www.youtube.com/watch?v=vobqUcnHAM8

 

If you when you try to compile your program you get the error: “javac not recognized as internal or external command…..,” that means that you need to edit the PATH environment variable.  Here is a quick tutorial on how to do so: https://www.youtube.com/watch?v=paLQCfC3Ff8

 

Mac users

Here is a video tutorial that will walk you through the steps you need to follow: https://www.youtube.com/watch?v=hzQWs4O6G7A

 

Linux users

Here is a page that will walk you through the steps you need to follow:

http://introcs.cs.princeton.edu/java/15inout/linuxcmd.html

 

Program 1 (50 points):

 

Popeye the Sailor wants to sail from Bluto’s Marina to Whimpy’s Hamburger Haven, where he will dine with his girlfriend Olive Oyl. The one-way distance for this trip is 18 Nautical Miles. Popeye wants to know how far that is in “regular miles.” A Nautical Mile is equal 1.1508 regular miles. Popeye also wants to know how long it will take to travel this distance. Popeye’s boat travels at a top speed of 5.8 Knots (Nautical Miles per hour) and an average speed of 4 Knots.

 

Write a program to answer Popeye’s questions. In your program, you should have a variable for the distance in nautical miles set to 18, a variable for the top speed set to 5.8, and a variable for the average speed set to 4.  Your program should compute and display the distance in regular miles, the estimated travel time in hours at top speed and the estimated travel time in hours at average speed.

 

Here is a sample run:

 

Program 2 (50 points):

 

Write a program that plays the following interactive “magician’s” game.

Your program should prompt a player for a four-digit number and permute

(scramble) the digits to form two numbers. For example, if a player enters 1267 then the two permutations might be 2176 and 7612. Your program should display these two numbers. Next, instruct the player to:

 

  1. Calculate the positive difference between the two numbers,
  2. Secretly choose any digit in the difference except a zero, and
  3. Enter the remaining three digits in any order.

 

Your program will dazzle the player by supplying the secret digit.

 

Here is a sample run:

 

 

 

Hint: The sum of the digits in the difference must be a multiple of 9. Find the remainder when the sum of those three digits is divided by 9.  That remainder plus the missing digit adds up to 9.

 

 

Note:

 

Please make sure to submit well-written programs for these programming tasks. Good identifier names, useful comments, indentation, and spacing will be some of the criteria that will be used when grading this assignment.

 

 

  • Week-2.zip