bo wrote:
> Now that I have my program working. How do I restart it from within 
> the program. I tried to do it with a do-while statement around the 
> whole program. I also added a char variable for yes or no. I hate to 
> be a bother but would you look over the code and see what I did 
> wrong. I hope one of these days I will be able to give back more that 
> I ask for help. 
> I can't even get it to start when I insert the do while. 
> Here is the code.
>  /*original version Merle Hall CSS561 week 5 individual assignment*/
> /*Change request for tax calculation program at Kudler Stores*/
...
>    }while (cAgain == y)

The above should be generating a compile-time error.

     } while (cAgain == 'y');

Try that instead.

-- 
Thomas Hruska
CubicleSoft President
Ph: 517-803-4197

*NEW* MyTaskFocus 1.1
Get on task.  Stay on task.

http://www.CubicleSoft.com/MyTaskFocus/

Reply via email to