Draw a flowchart to accept two angles. Calculate and display whether they are ‘Complementary Angles’ or ‘Not Complementary Angles’
Answers
Answered by
6
A Python program for the same:
The checking is done using the if-else structure in Python, also known as 'conditional statements' which are statements used to check for a required condition and carry on the program accordingly.
Similar questions