Respuesta :
Answer:
Code attached in file
Explanation:
- Take input of total number of copies from user
- 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]