From: Andre` N. C. <ca...@op...> - 2001-05-07 11:31:50
|
----- Original Message ----- From: "gisan" <gi...@li...> To: <dev...@li...> Sent: Monday, May 07, 2001 5:38 AM Subject: Re: [Dev-C++] (no subject) > > > do > { > > cout<< "please enter the width of tree"; > cin>> g ; > > > if(g <=10) > .........................................................> > will take into account the number of times the loop has been I'm not sure what you mean here but if you want to keep track of howmany times the loop is hit you could add ulLoopCount = ++ above cout<< "please enter the width of tree"; of course make sure you initialize it to 0 first. |