InterviewSolution
Saved Bookmarks
| 1. |
Draw a flowchart to calculate and print the sum and average of three numbers |
|
Answer» Answer: Flowchart to find the sum and average of three number? Answer: step 1: Start. step 2: Take three input for calculating the average. say the NUMBERS are n1, n2, N3. Step 3: Add the all values of n1, n2 and n3. ... Step 4: After that you have to take another VARIABLE for average like avg = add / 3. Step 5: print the value average; step 6: END. |
|