1. Create an algorithm that identifies if the number of inputs/output is Odd or Even numbers.
2. Create a process using pseudocode to explain the process of computing the Area of a Triangle.
1 answer
parity = (n%2 ==0) ? "even" : "odd"