do-while
Do..While...Loop Result
What should the results be of the following pseudocode: Initialize counter to 10 Do while counter < 100[详细]
2023-02-19 14:15 分类:问答do-while condition without declaring a separate variable
I have a do-while loop inside a function that resembles something like this: do { // a bunch of stuff if (something < something else)[详细]
2023-02-18 19:26 分类:问答Simple Java Query - Getting a Result from a Integer
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[详细]
2023-02-18 01:09 分类:问答Do-while instead of if-else
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[详细]
2023-02-14 03:59 分类:问答ending a do-while loop
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.[详细]
2023-02-13 21:49 分类:问答ObjC: scanf skipped in do/while loop
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[详细]
2023-02-13 13:23 分类:问答My do-while loop isn't looping
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[详细]
2023-02-13 12:24 分类:问答Ending a for loop by pressing 'q'
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[详细]
2023-02-13 02:44 分类:问答How to restart a file input loop
I have this sample code in VBA: iFileNum = FreeFi开发者_开发知识库le() Open fileLocation For Input As #1[详细]
2023-02-10 04:55 分类:问答Do .. While Loop/Textfile/Operation Problem
Hi I have a problem with the following code: int skp = 1; do{ file.seekp(skp); file>>s; cout<<s;[详细]
2023-02-07 10:22 分类:问答