A new author is in the process of negotiating a contract for a new romance novel. The publisher is offering three options. In the first option, the author is paid $5,000 upon delivery of the final manuscript and $20,000 when the novel is published. In the second option, the author is paid 12.5% of the net price of the novel for each copy of the novel sold. In the third option, the author is paid 10% of the net price for the first 4000 copies sold, and 14% of the net price for the copies sold over 4000. The author has some idea about the number of copies that will be sold and would like to have an estimate of the royalties generated under each option. Write a program that prompts the author to enter the net price of each copy of the novel and the estimated number of copies that will be sold. The program then outputs the royalties under each option and the best option the author could choose. (Use appropriate named constants to store the special values such as royalties rates and fixed royalties.)

Respuesta :

Answer:

Code attached in file

Explanation:

  1. Take input of  total number of copies from user
  2. Take net price from user

Option 1

we do not need to perform any calculations just add 20,000 and 5000 and we get fix amount which is paid to author.

Option 2

Multiply total number of copies to net price to get total revenue.

[tex](total No Copies * net Price)[/tex]

Now multiply total revenue with 12.5 and divide by 100 to get 12.5 percent revenue

[tex]((total No Copies * net Price)*12.5)/100[/tex]

Option 3

If total number of copies is less than 4000

Multiply total number of copies to net price to get total revenue.

[tex](total No Copies * net Price)[/tex]

Now multiply total revenue with 10 and divide by 100 to get 10 percent revenue

[tex]Revenue of 4k ((total No Copies * net Price)*10)/100[/tex]

now check if total number of copies is greater than 4000.Subtract 4000 from total number of copies to get number of copies above 4000.

[tex]Number Copies Above 4K= total copies - 4000[/tex]

Now Multiply total number of copies above 4k to net price to get total revenue.

[tex](total No Copies above 4k* net Price)[/tex]

Now multiply total revenue with 14 and divide by 100 to get 14 percent revenue and add revenue of 4k to result

[tex](((total No Copies * net Price)*14)/100)+ revenue of 4k [/tex]

Ver imagen usamasama