What should the results be of the following pseudocode: Initialize counter to 10 Do while counter < 100
I have a do-while loop inside a function that resembles something like this: do { // a bunch of stuff if (something < something else)
I have been set an assignment where I must find the average of a list of positive numbers enterd by the user, the amount of numbers entered is unknown. So far I have got the program to add all numbers
I\'ve been examining some PHP code today and I\'ve not开发者_运维技巧iced the usage of do-while with breaks instead of if-else. What are the advantages of it? Code readability? Speed? Anything else?I
Ok I have a do-while loop that\'s supposed to end when the use hits \'q\' but it is giving me the error message instead please help.
I\'m just starting to teach myself Objective C and have been fooling around with a simple console based calculator. To start I\'m asking the user which operation they would like to perform, what two n
Hello everybody I\'m really close to finishing this but I\'m having problems with my for loop.I need my program to have a user enter either a \'w\' or \'h\' to have them enter a new weight or height.W
I have been doing a project for my java class.For the project I have to have the user enter input and calculate their body mass index and body surface area the program is supposed to remain running un
I have this sample code in VBA: iFileNum = FreeFi开发者_开发知识库le() Open fileLocation For Input As #1
Hi I have a problem with the following code: int skp = 1; do{ file.seekp(skp); file>>s; cout<<s;