Answer:
The solution code is written in Python:
Explanation:
Since we need a standard Pi value, we import math module (Line 1).
Next, create a function getUserInput to prompt user to input degree (Line 3-5).
Next, create another function calculateRad that take one input degree and calculate the radian and return it as output (Line 7-8).
Create function printResult to display the input degree and its corresponding radian (Line 10-11).
At last, call all the three functions and display the results (Line 13-15).