Kat
Chat with our AI personalities
The link has a picture of the flow chart. Too hard to put it in a readable format on Answers.comhttp://en.wikipedia.org/wiki/File:FlowchartExample.png
i need a pic of cuson
Factorials are the product of 1 and all the integers up to the given number. Simply put, 5 factorial or 5! = 5*4*3*2*1
You draw a flowchart to find maximum and minimum of given 3 input numbers by using all three numbers. You take the low, high and input the middle number between them. You can see the rise, or decline of the chart that way.
#define fact(n) ( n == 0 ? 1 ; (n*(fact(n-1) ) ) )