Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Python Coding Problem, Please help. :) Background An important issue in the technological world nowadays deals with patent licensing. A patent is a set of
Python Coding Problem, Please help. :)
Background An important issue in the technological world nowadays deals with patent licensing. A patent is a set of exclusive rights conferred on an inventor for a limited time in exchange for public disclosure of the invention. Usually, these rights give the inventor exclusive permission to make and sell products using the invention for the life of the patent. This requires anyone else who wants to use that invention to get permission from the inventor. Usually, inventors will give this permission in exchange for money. In 2013, a court case in the United States involving Motorola and Microsoft settled a disagreement between the two companies about how much Microsoft should have to pay Motorola to use the technologies Motorola had patents. The judge determined that for using particular video technology, Microsoft would have to pay Motorola 0.555c for each Xbox 360 . The judge also determined that for using particular wireless networking technology, Microsoft would have to pay Motorola 3.471c per Xbox 360. The total number of Xbox 360s sold worldwide since Q3 FY2013 is 77.2 million. Instructions Write a program to calculate how much Microsoft would have had to pay Motorola in millions of dollars. Your program should prompt the user to enter in information (see Sample Output), then calculate the correct number to output. Keep in mind that if we change any input number, the output produced by your program should also change. Sample Output The output of your program should look similar to what is shown below. Note: 1. The bold texts are user inputs. 2. [enter] indicates users hit enter key from the keyboard, not part of the output. 3. Underlined texts are numbers that should be calculated by your program. Enter the number of Xbox 360s (in millions) sold to date: 72 [Enter] Enter the price per Xbox 360 (in cents) to be used for the video patent license: 0.555 [Enter] Microsoft would have to pay Motorola \$ 0.00555 per Xbox 360 for the video patent license. With 72 million Xbox 360 s, this comes to a total of 0.3996 million dollars. Enter the price per Xbox 360 (in cents) to be used for the networking patent license: 3.471 [Enter] Microsoft would have to pay Motorola \$0.03471 per Xbox 360 for the networking patent license. With 72 million Xbox 360s, this comes to a total of 2.49912 million dollars. For this case, the total amount for both patent licenses is 2.89872 million dollars. End of ProcessingStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started