Ask your own question, for FREE!
Computer Science 25 Online
OpenStudy (anonymous):

when using c++ language .how to loop 3 things with differents function header

OpenStudy (anonymous):

to loop 3 times as you want you can you a for loop written like this . for(int counter=1; counter<=3 ; counter++} { statements comes here }

OpenStudy (anonymous):

you need to put a conditional if to decide which function structure to use.. for (int counter=0;counter<3; counter++) { if(counter==0) function(counter,var1); else if(counter==1) function(counter,var1,var2); else function(var1); } maybe :)

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!