To test your learning, you will create a solution "from scratch". Place your code between the indicated lines and it will be tested against multiple test cases.
The algorithm will have you calculate the percentage on a test.
You are given a variable questions
representing the number of questions on the test and correct
representing the number of questions gotten correct. Use these variables to calculate the percent
variable as the percentage gotten correct.
Note
Don't worry too much about the function
and return
statements as they will be covered in future challenges. For now, only use operators that you have already learned.