The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
17 views

Firefox ONLY ignores javascript code snippet

This snippet of code looks for certain text in table rows and if it finds it, it increments the number between the () by 1. For example if it finds NEW BLANK LETTER (3), the next time this function is ...
-2
votes
3answers
42 views

Access a variable from inside a do while loop

How can I access a variable from inside a do while loop in Java? This is the exercice i'm currenty working on ... We ask the user write a value until the value entered is not is between 0 and 10 ...
1
vote
3answers
50 views

PHP: Use every line from txt to do this?

Trying to write a script that gets a line from txt (line is url), goes to the url, searches and grabs specific data. Grabbing the data works, but i need to do this multiple times. This is the find and ...
3
votes
1answer
53 views

Non-exhaustive Pattern exception, for bind but not for do

To put into context, I was converting a list comprehension (from there) doing "pattern filtering" to its monadic counterpart (do and bind), then I meet an exception. I start with these definitions ...
1
vote
0answers
15 views

how can i count the working days of an employee generating 1 2..31 days and the time will only appear to those days using vb.net

Dim cmd As OdbcCommand = New OdbcCommand("SELECT distinct checktime,format(CHECKTIME,'Short Date') as adlaws, format(CHECKTIME,'ampm') as formatz,checktype " & _ ...
0
votes
2answers
25 views

order of execution in do/while loop

I took the following example literally from Walter Savitch Absolute C++ book. It works (as one would expect from a scholar such as Walter Savitch). However, I am puzzled why as I will explain after ...
0
votes
2answers
30 views

Javascript comparisons not working with prompts, while loop, and !==

What I'm trying to do is prompt the user repeatedly until one of the accepted answers is received. Pretty easy stuff. The while loop, however, is making this really weird and annoying. Here's what I ...
3
votes
3answers
92 views

Summing even fibonacci numbers in lisp

I've just started learning Lisp, and I'm working through some Project Euler problems. I'm stuck on the one where you sum the even Fibonacci numbers below a max number. The things I've tried follow. ...
-1
votes
0answers
36 views

prevent merging files in bash do while copy

the following set of instructions is randomly merging segments of files content at destiny while read filename do if [ -e /sambaremoteserver/$filename ] then cp /sambaremoteserver/$filename ...
0
votes
1answer
32 views

instruction count in assembly code with loop

I have a piece of (assembly) code, in which i want to count the number of dynamic instructions a1=99 Loop: a1=a1-1 branch a1>0, Loop halt I think the instructions in loop are executing for 100 ...
0
votes
4answers
57 views

Small program having some looping issues

Just having a small issue with a small program that i'm doing for my entry level programming course. This loop is infinitely repeating and I can't seem to figure out why. I'm suspecting that the ...
1
vote
4answers
64 views

Is there a way to avoid an empty else { } at the end?

I'm learning PHP and try to write a little dice loop. I wonder how to rewrite this in a more appropriate syntax: <?php $rollcount = 1; do { $v = rand(1, 6); $w = rand(1, ...
0
votes
2answers
39 views

C++ cannot figure out how to jump into the switch from user input

ok so i am writing a console application that uses a switch to display products and prices. however i am having hell figuring out how to make it jump into the switch when the user inputs the product ...
-1
votes
1answer
37 views

Populating a 2d int array int[][] a certain number of times

I'm working on a battleship game where I place certain ships based on certain sizes. For some reason my method that i'm placing the ships isn't working. For reference the code with the 2 methods ...
2
votes
3answers
168 views

C++ do while loop

I have a vector holding 10 items (all of the same class for simplicity call it 'a'). What I want to do is to check that 'A' isn't either a) hiding the walls or b) hiding another 'A'. I have a ...
2
votes
2answers
99 views

do while loop.. to proceed if correct input is given

I am trying to do a while loop but it kept failing on me. So while date is not entered by the user, this will keep running until a valid date is entered. isValidDate is a method to check whether the ...
0
votes
3answers
242 views

do while loop using an if statement to print odd numbers

At the moment I am learning loops. I am trying to create a console application which uses a do while loop to print all odd integers between 20 and 0. Why when I uncomment if statement below my code ...
0
votes
2answers
74 views

My Do Until macro doesn't do anything

I'm creating an iterative loop for solving a Darcy-Weisbach closed pipe loop. There are 4 loops. I'm trying to repeat an iteration for all 4 loops until the head loss is below a certain value ...
1
vote
2answers
111 views

Haskell- IO String get multiple Lines

I am trying to write a function that gets multiple string inputs and terminates on an empty line ('\n') I have following getLines :: IO [String] getLines = do x <- getLine if x == "" ...
1
vote
4answers
241 views

A Java Do/While loop that skips the While condition [closed]

I am having trouble with the Do/While loop I am using. No matter what character or string that the user types in, the if block is shown, even when the while condition is not met. More specifically, ...
0
votes
1answer
47 views

Ruby MsSQL and Do blocks

I have the following code: sql = "select Board_Name AS 'Board Name', COUNT(Board_Name) AS 'Count' from dbo.TABLE GROUP BY Board_Name" result = client.execute(sql) result.each do |row| binfo = [ ...
-2
votes
2answers
58 views

Do loop homework update [closed]

This is my previous question : Do loop program I've updated my program a bit. It compiles and ends yay! Now the issue is the min and max aren't updating correctly and even when I put my sentinel ...
1
vote
4answers
88 views

Do loop program

I'm working on this program for my intro to java class. I've been having a lot of issues. I'm using eclipse. The program is supposed to find the average, range, min, and max numbers. I have everything ...
0
votes
1answer
71 views

Making nested polygons

I'm trying to use a loop but don't know how to make it work within a loop. Here's what I have for concentric circles, I would like the same idea but with triangles. int x = 100; int y = ...
1
vote
3answers
96 views

DO loop excluding several values in Fortran

How to achieve this in Fortran ? do i = 1, n Except n/2 Is there a convenient way instead of using 'if' in the loop ?
0
votes
0answers
58 views

paypal do capture and curl

I am getting a cannot connect to host error when trying to implement the following: Any help would be greatly appreciated..I have been banging my head against the wall.... $environment = 'sandbox'; ...
3
votes
1answer
76 views

Condition in do block

Why does the following block of code: main = do line <- getLine if null line then runTestTT tests else do line2 <- getLine seq::[Int] <- ...
1
vote
5answers
102 views

Something is wrong with my do-while loop involving character position

when i run the program the output is just continuous and doesnt end. The goal here is to try and get the + all the way to the left or the right, then print which side won and how many turns it took. ...
0
votes
1answer
76 views

For/ do-while loop trouble, logic error somewhere [closed]

Whats supposed to happen, is its supposed to print a line of dashes with a + in it, that depending on the random number generator, moves left or right. My code will only do 2 lines and move 1 spot and ...
0
votes
1answer
119 views

Do-while loop “string index out of range”

I'm getting that error and I'm not sure why. I've tried a few different things like starting with (!(flag... then == '+' and one with == to a which is where the line right below the do statement also ...
0
votes
2answers
54 views

Switch doesn't accept input until the second attempt

I'm working on a project for a class and could use some help figuring out why my code is behaving the way it is. The assignment is to prompt a user to input two integers and select an arithmetic ...
1
vote
1answer
38 views

plot vertical line with DO

i try to plot the result of this code as vertical line each one in the position of the solution of the FindRoot routine (something like that: http://www.astrobio.net/albums/xsolar/ach.sized.jpg ). ...
0
votes
3answers
195 views

Strings, gets and do while

I'm doing an exercise in C but I have a problem when at the and I want to repeat the cicle (do while), infact if I type 1 the programme starts again by the top, but it doesn't stop at the gets(testo); ...
0
votes
3answers
90 views

Why isn't my do while statement working [closed]

Can you please fix this program. It will not cout z. int main() { using namespace std; int x, y, z, a; cout << "Please enter a number" << endl; cin >> x; cout ...
0
votes
2answers
229 views

javascript lottery game using random numbers what is wrong with my logic

A simple straight forward game user enters 6 numbers and clicks button play, if all 6 numbers are matched they win lottery, I have set up the loop so that it keeps generating a random numbers until ...
-3
votes
3answers
30 views

What is the meaning of “find%4==0”?

void searchcontact() { int l,i; char query[20]; system("cls"); do { find=0; printf("Contact Search\n Name of the Contact:\n"); fflush(stdout); ...
0
votes
2answers
163 views

Conditional Loop, Values not adding to array

I am trying to read in a single value for WC(1). I would then like to use the initial value of WC(j) in a conditional loop. I get the first value of WC(j) to run smoothly (it meets the first condition ...
0
votes
2answers
62 views

Javascript: open URL after a loop gives a right answer

I can't figure this out: var right = {"Google" :1, "Bing" :1} do { var website = prompt("Where should I redirect you: Google, Yahoo!, ebay or CCSF?", ""); } ...
0
votes
1answer
97 views

java while loop is not counting correctly

Imma java newbie so I try to learn things. I created a boolean method, it's a small craps game. I need this method is called from main method and keep playing while return value is true (game is won) ...
1
vote
1answer
71 views

Label not showing

I'm doing a project in WPF-C# and I put a new label on my project, but it simple doesn't appear when I start debugging, as you can see on the image. I alredy checked IsEnabled, visibility/opacity, ...
0
votes
1answer
138 views

Get memory dump in ModelSim (periodical)

How can I get memory dump in ModelSim on a regular basis? I know how to export memory data. Is there a way to write in the .do file a command to export the memory data every 1000 ns or every x ...
0
votes
1answer
64 views

XCode View Controller Not Updating in Do Loop

I have a do loop that I want to execute a command every 1 second while a SWITCH is on. The Code works fine ONCE, when I don't have the DO LOOP. However, as soon as I add the LOOP, none of the labels ...
0
votes
5answers
167 views

Local variable name 'choice' cannot be declared because it would give different meaning to 'choice'

Sorry, I'm completely new to the programming world. I'm creating a console application that basically takes your input on whether you want to convert Celsius to Fahrenheit or vice-versa. The ...
1
vote
5answers
171 views

What is wrong with this do…while loop C#?

I wrote this code to get a set of characters until a specific character was read. I know there's a better way but just of curiosity. It didn't work. The loop continued endlessly. Why is this ??? ...
0
votes
1answer
145 views

Why can't I get time in a `do` block?

I have this function which is responsible for communication in a web chat. Everything works fine without t <- getClockTime (here is code with it): talk :: WS.Protocol p => MVar State -> ...
0
votes
3answers
94 views

bash, prompt for numerical input

d is an internal server lookup tool I use. I am looking to allow a user to input any number between 0 (or 1) and 9999 (let's call this userinput) and have it display the result of: d $userinput ...
-1
votes
2answers
294 views

Java - I do not have Swing in Eclipse [closed]

Ok so I know that I have the swing library because I can add JFrames programmatically. However, I cannot add a JFrame in Eclipse with New > Other > Swing etc. as I do not have the Swing folder amongst ...
1
vote
1answer
214 views

do while condition vb6

I have a little vb6 program: Private Sub Form_Load() Dim varTemp As Variant Dim string1 As String Dim x As Integer x = 0 dialog.Filter = "toate fisierele(*.*) | *.*" ...
0
votes
3answers
117 views

Trouble with a do while loop [closed]

I am trying to return a random number that has to be between two numbers, the way I'm doing this is setting up a loop to check that it is between those numbers, if not , re-roll. The problem I'm ...
0
votes
0answers
29 views

Indexing within an interative do statement in SAS

I'm trying to change my dataset from wide to long format using a do loop. How do I use my looping character 'i' to index the variables I'm working with in the same loop? Example: do i = 1 to 12; ...

1 2 3