can someone help me make a flowchart from this program:
#include
You should have asked this in the computer science group. But it didn't take me much too long, and I think it could be interesting for people beginning the OCW course.
what could be its analysis ? the IPO . Input, Process and Output?
Input: 10 integers Process: walk through the integers and keep in memory the largest integer found Output: The largest of the 10 integers
so that is the Analysis of the program ?
It's my analysis, I don't know what you or your teacher are expecting. It certainly describes what the program is doing, but maybe you're expecting a specific way to describe this analysis...
yup . is this correct ? INPUT: Point[10],x=1,large=0 PROCESS: for(int x=1;x<10;x++); if(point[x]>large) OUTPUT: The largest number
It seems correct to me, except x=1 is really in the process, not the input. And I should say that the output is the largest number, or 0 is the user entered negative numbers.
so in the flowchart. the x=1 is in the process box not in the initialization??
Sure, because it is just a way to loop through the numbers
then on my output in my analysis, it should be The largest number or 0 or negative numbers?
Do you understand the program, or the diagram I made ? If not, please take 5 minutes to think about it. Then you'll probably be able to answer yourself. If not, I'll help you to find yourself the answer.
this is my flowchart. im sorry for the arrow, i did it on a rush ^^
sorry I can't read docx, put a picture instead
here you go
compare yours with mine now, and try to understand the differences
what is ur initialization ?
LOL :D its almost the same.
There are subtle but important differences :) Try to do that: run yourself the flow with a paper and a pen, just for 2 or 3 numbers.
hmm what would be its analysis ? thats my problem
draw three columns: one for for large, one for x (or indice), one for point[x]. Then try to go through each step of my flowchart. Don't try to analyze anything for the moment. Your brain will do the work and you'll understand easily how it works.
Join our real-time social learning platform and learn together with your friends!