2
of
2
This program processes user input using a
Scanner
. You should handle the following two special cases of input:
•
A student can
receive extra credit on an
individual assignment
, but
the total points for homework are capped at the
maximum
possible
. For example,
a student
who
earns
4
1
/
4
0,
3
9
/
4
0, and
4
7
/
4
0 on three assignments
, and
25
/
3
0
on
section
attendance
will
receive
150
homework points (the max) even though they earned
15
2
.
Sections points ar
e capped at
3
0.
•
Cap exam scores at 100.
If the raw or shifted exam score exceeds 100, a score of 100 is used.
Otherwise, you may assume the user enters
valid input
. When prompted for a value, the user will enter an integ
er in the
proper range. The user will enter a number of homework assignments
≥
1, and the sum of the three weights will be exactly
100. The weight of each category will be a non
–
negative number. Exam shifts will be
≥
0.
Development Strategy and Hints:
•
T
ackle parts of the program (midterm, homework, final exam) one at a time, rather than writing the entire program at
once. Write a bit of code, get it to compile, and test what you have so far. If you try to write large amounts of code
without attempting
to compile it, you may encounter a large list of compiler errors and/or bugs.
•
To compute homework scores, you will need to cumulatively sum not only the total points the student has earned, but
also the total points possible on all homework assignments. S
ee textbook section 4.2 about cumulative sums.
•
The homework part reads two values on one line from the
Scanner
. See the lecture slides for an example of this.
•
Many students get “cannot find symbol” compiler errors. Common mistakes include forgetting to p
ass / return a
needed value, forgetting to store a returned value into a variable, and referring to a variable by the wrong name.
•
All weighted scores and grades are printed with no more than 1 digit after the decimal point. Achieve this with a
custom meth
od or
System.out.printf
. The following code prints variable
x
rounded to the nearest tenth:
double x = 1.2345;
System.out.printf(“x is around
%.1f
in size.
n”, x); // 1.2
•
If you are getting scores of 0 regardless of what data the user types, you may have
a problem with integer division.
See Chapter 2 about types
int
and
double
, type
–
casting, and how to avoid integer division problems. If you have a
value of type
double
but need to convert it into an
int
, use a type
–
cast such as the following:
double d =
5.678;
int i = (int) d; // 5
•
Use
Math.max
and
Math.min
to constrain numbers to within a particular bound.
Style Guidelines:
For this assignment, you are limited to Java features from Ch. 1
–
4. A major part of this assignment is demonstrating that you
un
derstand parameters and return values. Use static methods, parameters, and returns for structure and to eliminate
redundancy. For full credit, use
at least 4 non
–
trivial methods
other than
main
. For reference, our solution is roughly 110
lines long (66
“substantive”), with 6 methods other than
main
, though you do not need to match this.
Like on previous assignments, you should not have
println
statements in your
main
method. Also,
main
should be a concise
summary of the overall program; main should make
calls to several of your other methods that implement the majority of the
program’s behavior. Your methods will need to make appropriate use of parameters and return values. Each method should
perform a coherent task and should not do too large a share
of the overall work. Avoid lengthy “chaining” of method calls,
where each method calls the next, no values are returned, and control does not come back to
main
. (See textbook Chapter 4’s
case study for a discussion of well
–
designed versus poorly designed
methods.)
This document describes several numbers that are important to the overall program. For full credit,
you should make at least
one of such numbers into a class constant
so that the constant could be changed and your program would adapt.
When hand
ling numeric data, you are expected to choose appropriately between types
int
and
double
. You will lose points
if you use type
double
for variables in cases where type
int
would be more appropriate.
Some of your code will use conditional execution with
if
and
if/else
statements. Part of your grade will come from using
these statements properly. Review book sections 4.1
–
4.3 about nested
if/else
statements and factoring them.
Give meaningful names to methods and variables, and use proper indentation and
whitespace. Follow Java’s naming standards
as specified in Chapter 1. Localize variables when possible; declare them in the smallest scope needed. Include meaningful
comment headers at the top of your program and at the start of each method. Limit line
lengths to 100 chars.
Why Work with Us
Top Quality and Well-Researched Papers
We always make sure that writers follow all your instructions precisely. You can choose your academic level: high school, college/university or professional, and we will assign a writer who has a respective degree.
Professional and Experienced Academic Writers
We have a team of professional writers with experience in academic and business writing. Many are native speakers and able to perform any task for which you need help.
Free Unlimited Revisions
If you think we missed something, send your order for a free revision. You have 10 days to submit the order for review after you have received the final document. You can do this yourself after logging into your personal account or by contacting our support.
Prompt Delivery and 100% Money-Back-Guarantee
All papers are always delivered on time. In case we need more time to master your paper, we may contact you regarding the deadline extension. In case you cannot provide us with more time, a 100% refund is guaranteed.
Original & Confidential
We use several writing tools checks to ensure that all documents you receive are free from plagiarism. Our editors carefully review all quotations in the text. We also promise maximum confidentiality in all of our services.
24/7 Customer Support
Our support agents are available 24 hours a day 7 days a week and committed to providing you with the best customer experience. Get in touch whenever you need any assistance.
Try it now!
How it works?
Follow these simple steps to get your paper done
Place your order
Fill in the order form and provide all details of your assignment.
Proceed with the payment
Choose the payment system that suits you most.
Receive the final file
Once your paper is ready, we will email it to you.
Our Services
No need to work on your paper at night. Sleep tight, we will cover your back. We offer all kinds of writing services.
Essays
No matter what kind of academic paper you need and how urgent you need it, you are welcome to choose your academic level and the type of your paper at an affordable price. We take care of all your paper needs and give a 24/7 customer care support system.
Admissions
Admission Essays & Business Writing Help
An admission essay is an essay or other written statement by a candidate, often a potential student enrolling in a college, university, or graduate school. You can be rest assurred that through our service we will write the best admission essay for you.
Reviews
Editing Support
Our academic writers and editors make the necessary changes to your paper so that it is polished. We also format your document by correctly quoting the sources and creating reference lists in the formats APA, Harvard, MLA, Chicago / Turabian.
Reviews
Revision Support
If you think your paper could be improved, you can request a review. In this case, your paper will be checked by the writer or assigned to an editor. You can use this option as many times as you see fit. This is free because we want you to be completely satisfied with the service offered.