Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 22 Online
OpenStudy (anonymous):

can someone help me make a flowchart from this program: #include #include using namespace std; int main(int argc, char *argv[]) { int point[10],large=0; cout<<"Enter a number: "<>point[0]; large=point[0]; for(int x=0;x<10;x++) { cin>>point[x]; if(point[x]>large) large=point[x]; } cout<<"The largest number is "<

OpenStudy (maitre_kaio):

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.

OpenStudy (anonymous):

what could be its analysis ? the IPO . Input, Process and Output?

OpenStudy (maitre_kaio):

Input: 10 integers Process: walk through the integers and keep in memory the largest integer found Output: The largest of the 10 integers

OpenStudy (anonymous):

so that is the Analysis of the program ?

OpenStudy (maitre_kaio):

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...

OpenStudy (anonymous):

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

OpenStudy (maitre_kaio):

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.

OpenStudy (anonymous):

so in the flowchart. the x=1 is in the process box not in the initialization??

OpenStudy (maitre_kaio):

Sure, because it is just a way to loop through the numbers

OpenStudy (anonymous):

then on my output in my analysis, it should be The largest number or 0 or negative numbers?

OpenStudy (maitre_kaio):

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.

OpenStudy (anonymous):

this is my flowchart. im sorry for the arrow, i did it on a rush ^^

OpenStudy (maitre_kaio):

sorry I can't read docx, put a picture instead

OpenStudy (anonymous):

here you go

OpenStudy (maitre_kaio):

compare yours with mine now, and try to understand the differences

OpenStudy (anonymous):

what is ur initialization ?

OpenStudy (anonymous):

LOL :D its almost the same.

OpenStudy (maitre_kaio):

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.

OpenStudy (anonymous):

hmm what would be its analysis ? thats my problem

OpenStudy (maitre_kaio):

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.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!