Tagged Questions
The do tag has no wiki summary.
13
votes
3answers
448 views
Ruby Print Inject Do Syntax
Why is it that the following code runs fine
p (1..1000).inject(0) { |sum, i|
sum + i
}
But, the following code gives an error
p (1..1000).inject(0) do |sum, i|
sum + i
end
warning: do not ...
6
votes
6answers
608 views
Java do while, while
what behaviour can I expect when I run this code:
do while(testA) {
// do stuff
} while(testB);
Will it behave like:
do {
while(testA) {
// do stuff
}
} while(testB);
...
6
votes
5answers
181 views
Should I change my utilities.pl to a utilities.pm module?
In our product we have a big utilities file that we require (with do) at the beginning of a lot of our files. Is there a reason not to turn this into a module? For example, instead of doing this:
...
5
votes
5answers
180 views
what does “do” do here? (java)
I saw this bit of code on the interents somewhere. I'm wondering what the do is for.
public class LoopControl {
public static void main(String[] args) {
int count = 0;
do {
...
5
votes
9answers
1k views
do while loop in C#
Hi I am new to programming in C# can some one give me an example of how to write do while loop in C#
EDIT: FYI I am a VB.NET programming trying to make the move to C#, so I do have experience with ...
5
votes
1answer
415 views
Lisp DO variable syntax reasoning
In Peter Seibel's Practical Common Lisp, he gives this example:
(do ((nums nil) (i 1 (1+ i)))
((> i 10) (nreverse nums))
(push i nums))
I can see how it works, using nums inside the loop ...
3
votes
3answers
477 views
Haskell: The last statement in a 'do' construct must be an expression
Hey, sorry to dump the error message here but I've tried everything I can find and nothing seems relevant. This code is generating the error:
import System.Environment
import System.Directory
...
3
votes
5answers
303 views
Why am I unable to load a Perl library when using the `do` function?
I'm new to Perl, and I'm updating an old Perl website. Every .pl file seems to have this line at the top:
do "func.inc";
So I figured I could use this file to tag on a subroutine for global use.
...
2
votes
1answer
84 views
Haskell - syntax in do blocks (using IO)
The compiler says
The last statement in a 'do' construct must be an expression:
rmax <- getInteger
when attempting to load a file containing the following snippets of code:
getInteger :: IO ...
2
votes
1answer
143 views
lual_dofile(); wont load script with C++ and Lua
Hello i'm trying to get this code to work
extern "C"
{
#include <lua.h>
#include "lualib.h"
#include "lauxlib.h"
}
#include "glew.h"
#define GLEW_STATIC
#include "SDL/SDL.h"
#include ...
2
votes
4answers
240 views
C# do while loop start stop
I am trying to make a stop button for this loop but it runs indefinite, nothing happens when i click button 2
bool dowhile = false;
private void button1_Click(object sender, EventArgs e)
{
do
...
2
votes
1answer
123 views
Parse Error on Input '<-' inside a do block?
I'm trying to do some parsing in Haskell using Parsec. I've got a number of parsers in my code, but am getting an error on one of them:
expression2 =
do (operator lexer "|"
a <- ...
2
votes
1answer
319 views
create index in SAS using do loop
Say I have a set of data in this format:
ID Product account open date
1 A 20100101
1 B 20100103
2 C 20100104
2 A 20100205
2 D 20100605
3 A 20100101
And I want ...
1
vote
2answers
176 views
Do until EOF loop with records in VB 2010
I have a program below that doesn't seem to be doing what I want it to do. In general, the pseudocode is: enter the number of miles (miles.text), click button, check: is the mileage entered equal to ...
1
vote
1answer
101 views
NullPointerException clojure println
I'm learning clojure and I found a problem in this very ugly, anti-idiomatic, stupid code that I wrote:
(ns music-tag.core
(:import
(java.io.File)
(com.echonest.api.v4.EchoNestAPI)
...
1
vote
1answer
142 views
Haskell IO sharing parameters
In Haskell, is it possible to share user input from one IO function to the other?
For instance, if I had:
main = do
putStrLn "Give me a number!"
my_stuff <- getLine
...
1
vote
2answers
73 views
Java: For statement inside of Do statement?
This is related to my other question here
public void equipWep(String weapontoequip){
if(items.isEmpty() && weapons.isEmpty()){
System.out.println("You are not carrying ...
1
vote
1answer
73 views
Perl && do { last; };
In my book it uses something like this:
for($ARGV[0])
{
Expression && do { print "..."; last; };
...
}
Isn't the for-loop incomplete? Also, what's the point of the do, couldn't it just be { ...
1
vote
3answers
84 views
Do while javascript Problem
I'm trying to send multiple post within a do while loop but the result is not added
<script type="text/javascript">
function action() {
var initval = 1;
var endval = 5;
do {
var ...
1
vote
2answers
82 views
Getting bash to ignore bash keywords in a script
I have a script in bash which uses the HTK toolkit. One of the files that the HTK tool uses is called do and is present within a directory called hmm_1/. Now, when I need to call a particular tool ...
1
vote
2answers
119 views
Fortran: Short form for “do loop”
Hey there,
I have a code like that:
write (filehandle,'(5e14.6)')
& (((my_array(i,j,k,1),i=istart,iend,istep),j=jstart,jend,jstep),k=kstart,kend,kstep)
is this a short form for a ...
1
vote
1answer
232 views
Do..While…Loop Result
What should the results be of the following pseudocode:
Initialize counter to 10
Do while counter < 100
Display counter multiplied by 2
Add 10 to the counter
End loop
I'm thinking: 20, 60, ...
1
vote
2answers
313 views
parallel computing of a function with doSMP on Windows
I'm trying to multicore a function (in Windows), which, at one point, calls another workhorse function (function within function). Here is a minimal working example. You will need doSMP and revoIPC ...
1
vote
1answer
522 views
Objective C “do - while” question
The example for one of the exercises in the book I am reading shows the following code:
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
NSAutoreleasePool * ...
1
vote
12answers
218 views
What are your tips for keeping track and avoiding bugs in loops?
I just found ... AGAIN ... a real time wastage bug as follows
for (int i = 0; i < length; i++)
{ //...Lots of code
for (int j = 0; i < length; j++)
{
//...Lots of code
}
}
...
0
votes
1answer
25 views
How do i express time correlation of two Rhino mock calls
I have a device that needs to be mocked. Depending on the last set value a statusflag on the device changes. I need to mock this behaviour.
Here is some pseudocode that does not work:
private ...
0
votes
2answers
42 views
Ruby - Calling a method from a loop within another method
Here's the problem...
I have a method that I'm calling to strip out characters and convert strings to floats.
def convert_to_float(currency)
return currency.gsub(/regex/, "").to_f
end
I have ...
0
votes
3answers
83 views
BASH multiple nested IFs inside DO
The script I am trying to write needs to do the following
Go to specific directory and find all files with the *.mp4 extension that is newer than 30 minutes and move them into a variable.
All files ...
0
votes
3answers
62 views
Java: Strange OutOfBoundsException
do{
System.out.println("inside do");
for (int i = 0; i < i2; i++) {
String s2 = m_area.m_items.get(i).returnName();
if (s2.contains(s)) {
...
0
votes
1answer
73 views
Need Get-VM progress
We have a very large environment therefore it takes around 5 mins to collect all of the VMs and store them into a variable. I need a way to display progress until this collection is complete. I ...
0
votes
1answer
37 views
How can I pass a variable from a each do to a form_for inside it
I have a <% @user.comments.each do |comment| %>
and inside it is
<%= form_for [????, Subcomment.new],:remote => true do |form| %>
What can I use at ???? to ensure that the current ...
0
votes
5answers
124 views
This `do..while` loop isn't working
int sc1,sc2,a=0,b=0;
do
{
printf("Give the scores\n");
scanf("%d %d", &sc1,&sc2);
//===============================================
if (sc1 > sc2)
a+=1;
else if ...
0
votes
0answers
394 views
android timer with do…while
hi to all
my code is crashing and i need some help every thing is running fine accept for this part so please if someone can help that would be great.....
there is no errors but it crashes at ...
0
votes
4answers
427 views
QT do while loop
I am learning QT these days and I wanted to test do while loop , the actual login works in normally, but in QT the application freezes ..
I have defined randnum and guess in the header file ( public )
...
0
votes
3answers
171 views
Java Swing; choose between if statement or do-while statement?
I have a counter wich counts to 4 in a loop.
and a counter wich counts how many of these loops have passed.
In my code below both labels setVisibility to true at count 1.
But i want label1 to appear ...
0
votes
1answer
139 views
calculations inside do while are not working properly
Inside this do while loop, the calculations to calculate yearly average and the yearly low average temps and yearly high average temps are not working properly.
while (inFile.hasNext()) {
...
0
votes
4answers
61 views
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 ...
0
votes
1answer
488 views
php display categories and subcategories
Ok now i have two table categories and subcategories like this
Categories:
id
title
description
Sub Categories:
id
catid
title
description
Now the 'catid' of the subcategories will ...
0
votes
1answer
279 views
Multiple do commands in a for loop: Echoing a string to a file and then redirecting to the command window
I am trying to write a batch file to iteratively execute a fortran compiled executable. Normally one would go to the windows command prompt, type 'Model.exe'. This would bring up a dos command window ...
0
votes
1answer
297 views
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 ...
0
votes
2answers
108 views
Global variables
Here is my looping code which works great
i = 3
Do
Cells(i, 8) = 17012
i = i + 1
Loop Until i = 11
I would like the "loop until i=11" to read more like " loop until i=f" or some other variable ...
0
votes
3answers
616 views
Problem with do construct in haskell
I'm trying to learn Haskell and want to write a small program which prints the content of a file to the screen. When I load it into GHCi I get the following error:
The last statement in a 'do' ...
0
votes
1answer
70 views
Rotating do while PHP
Well I have unusual question I think. I am making a web site and the products must be shown as a line I will past a link for better understanding.
...
0
votes
4answers
205 views
VB.NET 2008 Application crashing during Do Loop
I am writing an application to compare each item on listbox1 to all items on listbox2. If the item is found, then remove it from both lists. The goal is to only have the items that were not found ...
0
votes
5answers
296 views
Is it possible to have a while loop in c++ that makes the check in the middle of the loop instead of the beginning or end?
I want to have a while loop do something like the following, but is this possible in c++? If so, how does the syntax go?
do {
//some code
while( expression to be evaluated );
// some ...
0
votes
2answers
457 views
Replay tic tac toe game
So I am trying to program a way to replay a tic tac toe game after someone wins, loses, or ties.
So basically my attempt to get replay to work, doesnt work. If player 1 won and I type 1 to replay, it ...