Absolute Java (6th Edition)
Absolute Java (6th Edition)
6th Edition
ISBN: 9780134041674
Author: Walter Savitch, Kenrick Mock
Publisher: PEARSON
bartleby

Concept explainers

bartleby

Videos

Textbook Question
Book Icon
Chapter 2, Problem 5PP

Grade point average (GPA) in a 4-point scale is calculated by using the following formula:

GPA = Percentage 100 × 4

Write a program that takes as input the percentage from a user. The program should then output the user's GPA on the screen. The format of the output should be as follows, assuming the user's percentage is 85:

85 / 100 * 4 = 3

Blurred answer
Students have asked these similar questions
Write a program that can calculate the future and present value of an investment given various parameters. When you calculate the future value of an investment, the more years you hold the investment and the higher the rate of return, the more valuable it is. For example, a $1000 investment at 7% return will give you $1070 (1000+ 0.07-1000) after one year and $1144.90 (1070+0.07-1007) after two years. However, because of inflation, that $1144.90 after two years is not worth the same as $1144.90 now. If the inflation rate is 2%, $1144.90 in two years is the equivalent of $1100.44 now-i.e- L02 More generally, the present value, p, of an investment is 1.02² 1144.90 f p= where is the inflation rate as a percentage. Typically, one would add to the investment with annual contributions. Let's say you start with a $1000 investment and add $100 every year. Therefore, after the first year, you will have $1177 - 7% return on $1100i.e. $1000 initial investment + the $100 year one contribution.…
Running the program Your program should take 5 arguments: start annual years return inflation where start is the initial investment amount annual is the amount that is added to the investment every year years is the number of years that the investment is held return is the annual investment return expressed as a percentage inflation is the annual inflation rate expressed as a percentage So, to calculate the future and present value of $1000 investment after 10 years where you add $100 every year with a 7% return and 2% inflation, you give the following arguments and get this output: $ ./fv 1000 100 10 7 2 Future Value: $3445.51 Present Value: $2826.52 Writing the code Starter code is provided for you below int main(int arge, char **argv ) { int a, n double value, present, I, is value= atof (argv[1]); a = atoi (argv[2]); natoi (argv[3]); r = atof (argv[4])/100; i = atof(argv[5])/100; // TODO write your code here printf ("Future Value: $%.2f\n", value) printf("Present Value: $%.2f\n",…
METHODOLOGY A bookstore owner wants you to write a program that calculates the gross pay of an employee. The input to the program is the number of hours the employee works in one week and the employee’s hourly pay rate. The program is to calculate the employee’s gross pay including the possibility of overtime pay. Regular pay is the number of hours the employee worked (up to 40 hours) times the hourly rate. The program is to compute an overtime pay if the employee worked more than 40 hours. All hours beyond 40 should be multiplied to 1.5 for the OT differential pay The program should output the worker’s regular pay, overtime time, and the gross pay (sum of the regular pay and overtime pay). Create an IPO and flowchart

Chapter 2 Solutions

Absolute Java (6th Edition)

Additional Engineering Textbook Solutions

Find more solutions based on key concepts
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Python Tutorial #10; Math Functions in Python; Author: Art of Engineer;https://www.youtube.com/watch?v=OviXsGf4qmY;License: Standard YouTube License, CC-BY