Sale!

COSC 117 Homework 3 Strings, Formatting, and some Ifs solved

Original price was: $35.00.Current price is: $30.00. $25.50

Category:

Description

5/5 - (2 votes)

 Strings, Formatting, and some Ifs

1. In this exercise you will write a small version of a mail merge feature from a word
processor. When you do a mail merge you create a generic letter and in the letter
you put special fields that will read in (usually from a file) a person’s name, address,
personal pronoun, and what other information is needed.

In this program you will
allow the user to type in a sentence where one field will be XXX and another will be
YYY, then have the user type in the data for the XXX replacement and the YYY
replacement. The program should replace the XXX and YYY in the string and print
out the resulting string. Three runs of the program are below.

Input merge format sentence:

XXX said that YYY was going to the concert.
Input XXX replaceemnt: George
Input YYY replaceemnt: he
George said that he was going to the concert.
Input merge format sentence:
XXX said that YYY was going to the concert.
Input XXX replaceemnt: Sarah
Input YYY replaceemnt: she
Sarah said that she was going to the concert.
Input merge format sentence:
The house that XXX built was being rented by YYY, XXX’s friend.
Input XXX replaceemnt: Jack
Input YYY replaceemnt: Sarah
The house that Jack built was being rented by Sarah, Jack’s friend.
1
COSC 117 Homework #3: Strings, Formatting, and some Ifs

2. Write a program that will take in an entire sentence that has the word “and” in it.
The program should then split the sentence at the word “and” and print out the two
half sentences. A run is below and the user typed in
This class is very easy and I am going to ace the first exam.
Input a string with the word ’and’ in it:
This class is very easy and I am going to ace the first exam.
This class is very easy
and I am going to ace the first exam.

3. Write a program that will ask for two integers, a lower bound and an upper bound,
then output a random number between the input lower and upper bounds inclusively.
Input Lower Bound: 5
Input Upper Bound: 20
12

4. Write a program that plays the (rather boring) game of High-Low. In an actual HighLow game you take a regular poker deck of 52 playing cards, shuffle them, then the
players take consecutive cards off the top of the deck and compare them. The higher
face value wins, with Ace being the top card. If the face values are equal then a
Spade wins over a Diamond which wins over a Club which wins over a Heart.

To
create a program that imitates life and creates a deck of cards and shuffles them uses
programming structures we have not seen yet but we will see later in the course. For
now, we will simply use a random number generator to create a card. In this case it
is possible that both players could have exactly the same card, for example the 7 of
clubs, which would not happen in a real game.

So there is also a possibility of a draw.
It would be like each player had their own deck of cards. In your program you will
generate a random card using the random number generator in the Math library for
both Player 1 and Player 2, then you will have the program determine the winner of
the game or a draw. Four sample runs are below.

Player 1: 8 C
Player 2: J H
Player 2 Wins
Player 1: 9 C
Player 2: 8 D
Player 1 Wins
Player 1: 10 H
Player 2: 10 D
Player 2 Wins
Player 1: K C
Player 2: K C
It is a draw.
2

2 Challenge Exercise

Challenge Exercises are optional, they will be graded as extra credit.
Write a program that will take as input the information about a student and their grades
and produce a progress report for them in a nicely presented way. The class the student is in
has 7 quizzes (each worth 10 points), three exams (each worth 100 points) and a final exam
(worth 200 points). This program is to take all of the grades except for the final, display the
grades in tables, calculate the student’s current average, and a table of projections for what
they need on the final exam to get a particular letter grade.

Since there are 370 points possible for the quizzes and exams, the current average in
percentage form is the sum of the grades divided by 3.7. To calculate the final exam score
needed you take the projected final average (90, 80, 70, and 60), multiply by 5.7 and subtract
the sum of the scores. For example, for the student to get a A they must have a 90% at the
end of the course. Suppose that the student earned 337 points, then the final exam score
they need is
5.7 · 90 − 337 = 176

The tables are to have their columns right justified and the current average must be to
3 decimal places. Also note that in the examples below if we do the projection calculation
for Martha the projected score for the D would come up as a negative number. If this is
the case then the student could have skipped the final and received that letter grade. So a
negative number here should be replaced by 0.

Two sample runs of the program are below. Your program should produce student reports
that are identical to these.
3

Input Student’s Name: John Smith
Input Student’s ID: 123456789
Input Quiz #1 Score: 8
Input Quiz #2 Score: 9
Input Quiz #3 Score: 10
Input Quiz #4 Score: 7
Input Quiz #5 Score: 6
Input Quiz #6 Score: 9
Input Quiz #7 Score: 8
Input Exam #1 Score: 89
Input Exam #2 Score: 100
Input Exam #3 Score: 76
Progress Report
—————

John Smith
ID: 123456789
Quiz Score
—- —–
1 8
2 9
3 10
4 7
5 6
6 9
7 8

Exam Score
—- —–
1 89
2 100
3 76
Average = 87.027%.
Score needed on a 200 point final
for each letter grade is as follows.
Grade Needed Score
—– ————

A 191
B 134
C 77
D 20
Input Student’s Name: Martha Jones
Input Student’s ID: 987654321
Input Quiz #1 Score: 10
Input Quiz #2 Score: 9
Input Quiz #3 Score: 10
Input Quiz #4 Score: 10

Input Quiz #5 Score: 8
Input Quiz #6 Score: 10
Input Quiz #7 Score: 9
Input Exam #1 Score: 98
Input Exam #2 Score: 100
Input Exam #3 Score: 99
Progress Report
—————
Martha Jones
ID: 987654321
Quiz Score
—- —–
1 10
2 9
3 10
4 10
5 8
6 10
7 9
Exam Score
—- —–

1 98
2 100
3 99
Average = 98.108%.
Score needed on a 200 point final
for each letter grade is as follows.
Grade Needed Score
—– ————

A 150
B 93
C 36
D 0
4