1
vote
7answers
63 views

Multiple test condition in a for loop logically associated with &&

For Example: for(j=0;t1&&t2&&t3;j++); if t1 fails , will the for loop check for t2 and t3 or not?
0
votes
3answers
163 views

Python “if” statement ignored [duplicate]

Possible Duplicate: Multiple conditions with if/elif statements I'm triggering loop within loop in Python, if one of the multiple conditions ("or") is met. The script seems to skip the "if" ...
1
vote
2answers
108 views

Using logical operators on loops results in contradiction

I'm dealing with a really, really weird issue in JavaScript. I'm working on a validator script that loops through a list of fields with jQuery. Each validation is tied to a regular expression on an ...
-4
votes
7answers
105 views

For Loops and Logical AND + OR

Why does this code take not run? for(int i=0;i<11;i++){ for(int j=0;j<11;j++){ if(i>0){ ...
1
vote
2answers
3k views

Loop in R: how to save the outputs?

I am trying to save the data from a loop of logical tests. So I have the following data: T1<- matrix(seq(from=100000, to=6600000,length.out=676),26,26) # a matrix of 26X26 - here with illustrive ...
0
votes
6answers
108 views

how to make a logical OR of an area memory pointed by an array

supposing to have two arrays a[N],b[N] containing only 0 and 1 values, is there a way to calculate c = a || b without a loop like the following (in C)? #define N 10 char a[N]; char b[N]; char c[N]; ...