Create a flowchart that will accept the length of the base and height of a triangle and print the area. Area of a triangle is : area = 1/2b*h ; where b = base and h = height.
-Create a flowchart that will accept a temperature in Fahrenheit and print its equivalent temperature in Celsius. the formula converting far to cel is c = 5/9(f-32);where c is the equivalent temperature in cel and f is the temperature in far.