0% found this document useful (0 votes)
99 views2 pages

Java Programming Assignment 13

1. The document provides instructions for Java Programming Assignment #1. Students are told to create a package called "assignment1" and individual classes for each problem named after the problem. They then copy all code into a text file to upload. 2. The first problem asks students to create ASCII art using print statements. The second problem asks them to write a program that calculates the sum of integers between two numbers input by the user. 3. The third problem asks students to write a program that compares the mileage of two cars based on miles driven and gallons used input by the user, and outputs which car has better mileage or if they are the same. It provides guidance on handling the integer values and fractional calculations required

Uploaded by

javaldez
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
99 views2 pages

Java Programming Assignment 13

1. The document provides instructions for Java Programming Assignment #1. Students are told to create a package called "assignment1" and individual classes for each problem named after the problem. They then copy all code into a text file to upload. 2. The first problem asks students to create ASCII art using print statements. The second problem asks them to write a program that calculates the sum of integers between two numbers input by the user. 3. The third problem asks students to write a program that compares the mileage of two cars based on miles driven and gallons used input by the user, and outputs which car has better mileage or if they are the same. It provides guidance on handling the integer values and fractional calculations required

Uploaded by

javaldez
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 2

Intro to Java Mr.

Weisswange

Java Programming Assignment #1

Since this is your first assignment, here's how you are going to handle the setup:

1. In NetBeans, right-click on Source Packages and select NewJava Package.
2. Name your package assignment1 and click Finish.
3. For each problem, right-click on your assignment1 package and select NewJava Main Class.
4. Name each class after the problem, such as Problem1_1 or AsciiArt.
5. Write each program in its own class file.

When you are done, you'll need to copy all of your code into a single text file in order to upload it to Edmodo.
To do this, open Notepad and copy the text of each source code file, in order, from NetBeans into Notepad.
Finally, save your Notepad text file and upload that file to Edmodo.

1. ASCII art

Since the output window of NetBeans is in a monospace font, you can use text (ASCII) characters to print a
picture. Use System.out.println() statements to print a picture of your own devising, such as:
^ \|/
/ \ -O-
/ \ /|\
/ \
<------->
| |
| +-+ |
| | | |
| | | |
+--+-+--+-----------
, only better.

2. Sum of consecutive integers

Write a program which asks the user for two integers and prints the sum of all the integers from one to the
other, inclusive, using the formula

1
2
b a b a
Sum


where a is the smaller integer and b is the larger integer.

This program will print the sum of consecutive integers.
Enter the smaller integer: 10
Enter the larger integer: 15
The sum is 75.

(The boldface text indicates values that are entered by the user.)

3. Mileage comparison

Write a program which asks the user for the number of miles driven by two cars and the number of gallons of
gasoline used by each. Then, it prints which car gets the better mileage, or that the mileages are the same (this
will require 3 if statements).

This program will compare the mileages of two cars.
Enter the miles driven by the first car: 250
Enter the gallons used by the first car: 10
Enter the miles driven by the second car: 300
Enter the gallons used by the second car: 11
The second car has the better mileage.

Right now, we are only working in integers, so the miles and gallons will have to be integer values. This does
pose a bit of a problem with calculation. The comparison we want to make is between two ratios. That means
that car 1 will have the better mileage if

1 2
1 2
m m
g g
,
where
1
m and
2
m represent the miles driven by cars 1 and 2, and
1
g and
2
g represent the gallons used by cars
1 and 2. This presents a problem, since we are using integers and cannot handle fractions or decimals, which
would often result from the division.

However, we can fix this problem. Since both
1
g and
2
g are positive numbers, we can simply cross-multiply
the inequality. Therefore, Car 1 will have the better mileage if

1 2 2 1
m g m g ,
where both sides are integers.

The comparisons that you need to use for the cases where Car 2 has better mileage and for equality can be
found simply by changing the comparison operator used above.

You might also like