A for loop is a control structure used by many programming languages to iterate over a range. Depending on the language this may be over a range of integers, iterators, etc.

learn more… | top users | synonyms (2)

-1
votes
0answers
12 views

Text file and Excel Validation

I have these code the I have a problem in the looping Dim line As String Dim Input As StreamReader Dim Code As String Dim strFile As New ArrayList Dim delFile As New ArrayList ...
0
votes
5answers
85 views

Curly brackets after for statement

I'm a newbie. Wrote a code to print sum of number from 1 to 10. Here's what happened; for(a = 1; a<=10; a++) sum += a; cout<<sum; Executing that gave me the correct answer i.e 55 When I ...
0
votes
0answers
14 views

For-loop write output in variable

I need to get the default printer of the currently logged on user. For this I need the users 'sid', because when the user is logged on, the 'sid' is stored in the registry and the I can search for his ...
0
votes
4answers
74 views

Moving every element down one in an array (Java)

I've had a decent search and am unable to find working code that moves down an array. What I am hoping to do, is to store the value in the last position in the array, replace the last position and ...
0
votes
0answers
7 views

Antlr3- Implement “for loop”

I am writing a DSL using ANTLR but stuck in implementing "for loops", "if statements". This is my first shot with ANTLR and implementing a DSL so please bear with me. My tree walker (partial code) ...
1
vote
2answers
43 views

Printing a diamond - can't enter input?

I'm trying to write a program that outputs a diamond pattern like this: * *** ***** *** * I've started by trying to first get it to print the top half of the diamond. I can input the ...
-2
votes
5answers
92 views

Why is the output “undefined” when i=10, for (i=0; i<10; i++)? [closed]

I'm currently learning Javascript, less than a week after the final of my C++-centric programming class, and in C++ the loop would stop when i!<10 but I'm assuming it keeps on going in JS since I'm ...
2
votes
4answers
70 views

Python not ignoring empty items in list

I have this code to print some strings to a text file, but I need python to ignore every empty items, so it doesn't print empty lines. I wrote this code, which is simple, but should do the trick: ...
1
vote
4answers
52 views

Browser ends PHP infinite loops and then prints the data

I am trying to capture live feeds from a card reader and printing it using PHP. <?php $i=0; for(;;) { $subdata=file_get_contents("/home/openflow/subscribedata.txt"); ...
0
votes
1answer
24 views

jquery for loop with given start and end

I have 2 input boxes so I enter a "From" and "To" values in each. For some reason it works in with a certain range only, but can't figure out why. var from = $('#from').val(); var to = ...
0
votes
1answer
45 views

Executing function on objects of name 'i' within for-loop in R

I am still pretty new to R and very new to for-loops and functions, but I searched quite a bit on stackoverflow and couldn't find an answer to this question. So here we go. I'm trying to create a ...
-1
votes
4answers
65 views

How do I loop through an enum in Java? [duplicate]

Let's say I have an enum like so: public enum Numbers { ONE("Uno "), TWO("Dos "), THREE("Tres "); } private final String spanishName; Numbers(String spanishName) { this.spanishName ...
0
votes
0answers
21 views

Converting from a Formula object to a list

In R, I would like to iterate over a formula object. R automatically converts a formula to a parse tree, so I see no reason why I shouldn't be able to iterate. For example, f <- ~x + y has ...
0
votes
1answer
20 views

Numpy savetxt loop

Using Numpy, I am going to split an array of dimension (557124,2), dtype = "S10", in 6 subarrays using sub_arr = np.split(arr, 6) Now I would like to use a for loop on save.txt and save the 6 ...
0
votes
2answers
73 views

If C99 lifted “variable declaration at top of block” constraint, why doing so in a “for loop” showing error?

I read from a site that C99 lifted the restriction that variables in C must be declared at the top of a block. I tested in my program below and it is indeed true as I get no errors. But in th e same ...
0
votes
1answer
16 views

ActionScript 3: Adding eventListener to a child with For loop

I get error code 1009 when I run this code... for(var aObj:int = 1; aObj < 50; aObj++){ this["elementsSb.netDev"+aObj].addEventListener(MouseEvent.MOUSE_DOWN, dragObject); ...
0
votes
4answers
93 views

use a variable from inside a for loop, outside of the loop

I'm a first time user here, though trying to find answers to my nooby question have sometimes led me here in the past. So basically, I have this code I'm using to find the surface temperature of the ...
0
votes
2answers
111 views

Why for loop in C only passes once?

I have a really simple piece of code that checks if a number given is a permutation (number of digits < 8; each digits shows up only once) From unknown reasons to me for loop with marked ...
1
vote
4answers
55 views

Java: Accumulate output pattern in string variable?

There is probably a question that covers this, but I haven't found it in searching. The idea is to display a pattern given user input for the character and number of lines like this: x xx xxx xxxx ...
1
vote
1answer
36 views

How to optimize the following double for loop in octave?

I have the following code in octave: dist=0; for i = 1:length(x); for j = 1:length(y); v = x(i,:) - y(j,:); distvect(j) = norm(v); endfor dist = dist + ...
0
votes
5answers
92 views

What do these “for” loops do?

I'm only familiar with normal for loop declaration. Can anybody tell me what these for-loops are doing and how their conditions work? BufferedReader charSource = ...
1
vote
1answer
24 views

Can't loop geocoding?

At the moment I'm working on an application for the iPad, which at a certain point should show a list of cities with next to these cities the distance from the users current location. I'm using a ...
-3
votes
0answers
120 views

C++ - What exactly does “for(;;)” do and why is it used? [duplicate]

I'm guessing this has been answered before, unfortunately "for(;;)" is hard to search for on most search engines including Stack Overflow's (Correction: as explained in the comments, quotes are more ...
0
votes
0answers
24 views

How to check if another generic list has the same values

I have a List<List<int[]>>. The List<int[]> is a generic list of coordinates (x,y) which make up a group such as (1,1) (1,2) (1,3). The other List<..> is simple a collection of ...
0
votes
3answers
37 views

Iterating through a dictionary for X number of times

Assume the dictionary contains more than 10 key-value pairs. The dictionary ought to be sorted by values (of integers). Print out the top 10 values (and corresponding keys). I think there is a better ...
0
votes
2answers
20 views

VBA - “Run-time error 424: object required”

So although I feel the need to mention that I’ve already made several posts on here regarding this project, I’ve since made some progress on it: For those that haven’t read any of my prior posts, I ...
0
votes
2answers
21 views

Actionscript 3. Remove loader with a for

I have a loader that I want to remove, and instead of removing one by one removeChild(ImgLoader1); removeChild(ImgLoader3); removeChild(ImgLoader4); removeChild(ImgLoader5); removeChild(ImgLoader6); ...
0
votes
2answers
62 views

How to write data to a String when in a for-loop

So basically I have this database that is a for loop. It gives a different score every time, which I need to save to a String (or file, but I guess a string would be easier, because I need it to be ...
1
vote
2answers
44 views

How many distinct values are inside an array

Say you have an array like so : int [] myArray = 1,2,3,1,4,2,6,1,5,3,6,1; How can you calculate the amount of distinct values inside the array = 6 ?
0
votes
3answers
107 views

Why aren't my variables being altered in my loops?

I've got a method that is meant to work out the group of elements of a 3D array with the highest combined value. I've got 3 nested loops that I'm using to go through my array, and as certain ...
1
vote
10answers
88 views

Python file variable - what is it?

I just started with Python, and since my background is in more low-level languages (java, C++), i just cant really get some things. So, in python one can create a file variable, by opening a text ...
0
votes
1answer
44 views

Why is my javascript array empty? [closed]

When I try to alert an array I store Parse query results in, the array is empty. I've tried moving the variables and the alert to different scopes but nothing seems to work. Is the problem with my for ...
0
votes
3answers
53 views

Array returning memory allocation instead of value in Java

Consider a simple case like this one : public static void array() { String myString = "STACKOVERFLOW"; int [] checkVal = new int[myString.length()]; for(int i=0; ...
0
votes
4answers
23 views

break javascript execution from inside timed loop

how to break a timed loop inside a for? I tried 'return', 'break', 'throw'. Nothing seems to work. It just continues with the loop. If I try with a label I get an error: Uncaught SyntaxError: ...
21
votes
3answers
249 views

Java 8 Iterable.forEach() vs foreach loop

Which of the following is better practice in Java 8? Java8: joins.forEach((join) -> mIrc.join(mSession, join)); Java7: for (String join : joins) { mIrc.join(mSession, join); } I have ...
0
votes
1answer
42 views

I have a for loop that refuses to stay within the defined limits. The limits have been verified (by printing) during runtime

I am inserting the snippet of code that is causing the problem. Please focus on the uncommented code, as that is the actual code. The commented out code was there to help me debug. Apologies for poor ...
-4
votes
0answers
51 views

list product using php [closed]

i am trying to create a product list as below structure using php but not able get the loop .each product table and list block will be generated dynamically. like each of the li block and td block ...
1
vote
1answer
25 views

For Loops in Python to read Long URL from shortened URL

I'm a python beginner and struggling with the loop function. If I run the code I just receive the long URL for the last entry. Any ideas? Thanks import urllib2 from BeautifulSoup import BeautifulSoup ...
1
vote
3answers
97 views

Caching variables in a `for` loop

I've been reading tips about Javascript performance boosting and one tip said to cache all the variables (that don't change) in the loops comparer statement and I was wondering if this also applied to ...
0
votes
1answer
15 views

Using CGRectIntersectsRect with IBOutletCollection of an array of uiviews

Hello I have 3 views as part of an IBOutletCollection. They are in the array called myArrayOfViews. I'd like to be able to use CGRectIntersectsRect to determine when any of these 3 views overlap but ...
0
votes
2answers
40 views

JavaScript — trying to use a loop to delete certain items in an array, but it deletes all items

I first tried a forEach loop to delete items from an array, but later learned that you shouldn't do this. So I tried to make one with a normal for loop. This is to cycle through an array containing ...
0
votes
1answer
27 views

Rainbow Effect not working correctly with A hrefs

I have a code that I am trying to write for a website host, a member asked for some support. And I wrote this, and it works only for Text but with a hrefs it ruins the markup. ...
0
votes
3answers
28 views

Javascript, check for identical characters

I got to make a script for checking an input box (password) for the same characters occuring twice. This should be used alongside with regex validation (that's already fully working). To succeed I ...
0
votes
2answers
20 views

How to populate a select option with value and text

I was trying to populate a select option with this: function ListaAno(){ var lista = $("#ano"); var currentYear = (new Date).getFullYear(); var pastYear = 2000; var rangeYear = currentYear - ...
2
votes
1answer
24 views

Unnamed struct declaration inside for loop initialization statement

In one of the SO thread, I had seen a usage of unnamed struct acting as a placeholder for multiple variables of different types inside for loop: For example: for(struct { int i; double ...
-8
votes
3answers
39 views

How to rewrite ArrayList in opposite direction [duplicate]

I have a ArrayList and I need to rewrite it in the opposite direction. How to do it? List<Posts> viewList = new ArrayList<Posts>(); viewList = viewLogic.getPostsList(username);
6
votes
3answers
66 views

Enhanced For Loop Exception

Created the below code whilst playing with loops. The code below stores the Fibonacci values into an array and then prints them using for loops. int [] numbers; numbers = new int[25]; ...
1
vote
5answers
32 views

php for loop syntax: how to impose multiple conditions

For a daily calendar application, I want to print out the hours of the day from nine in the morning to eight at night. I am using the following syntax which works up through 12. However, then I want ...
0
votes
1answer
42 views

StringIndexOutOfBoundsException in a FOR Loop [closed]

import java.util.Scanner; public class Test { public static void main (String [] args){ String word = "ErFLwWSa$ F?ytWtmVRLWmDj #4STs!@ VRa!12OW"; String word2 = "GREEN"; String result ...
0
votes
1answer
71 views

a loop to make a medication adherence variable in R

I am working with prescription data and want to generate a summary variable which measures an individuals adherence to a drug over a given period. This variable is called the Proportion Days covered ...

1 2 3 4 5 139