0
votes
2answers
44 views

MySQL logic where function I think

I have about 500 rows with simliar data to the 4 rows below, from this exmaple I only want two rows to be returned using the following logic: If emp No 817 sal_id = 2 is_active 0 then return 817 ...
0
votes
1answer
22 views

Python statement always being executed assitance

I have the following the condition statement: if (sc == 'Both') and (fc == 'True') or (bc == 'True'): do this if (sc == 'Front') and (fc == 'True'): do this if (sc == 'Back') and (bc == ...
1
vote
0answers
56 views

jquery append element xml logic (infinite scroll like)

I have a script that allows to append some data from an xml file. This script append element, for example 8 elements on click, then on next click 8 other elements. To do this I implemented a ...
1
vote
5answers
49 views

OR Logic in if statement issue.

I am having a problem with the logic in my if statement. I am trying to have it check to see if the strings character is equal to a, e, i, o, OR u. And then if so add the character to the phrase ...
-1
votes
3answers
41 views

How does this if statment trigger? [closed]

I was just working on some curl work, until I bumped into a interesting if statement. Thinking that it would never execute the if statement, to my surprise it does. How does this execute? <?php ...
-1
votes
3answers
42 views

If statement Logic flag

So I have two If statements and an overloaded function that needs to be used. I can't seem to figure out the logic for how to get this to work as i want it. To make it easier i took out the nonsense ...
85
votes
3answers
8k views

PHP Type-Juggling and (strict) Greater/Lesser Than Comparisons

PHP is famous for its type-juggling. I must admit it puzzles me and I'm having a hard time to find out basic logical/fundamental things in comparisons. For example: If $a > $b is true and $b > ...
1
vote
8answers
127 views

if statement logic

I've been tasked with creating a small java program for a course i'm doing, and i'm having some issues with the following block of code: System.out.println("Please enter your first name:"); ...
0
votes
2answers
69 views

repeat until loop in lua

What Am I doing wrong with my lua code? please help me! local which print("Type f to convert fahrenheit to celsius and c to convert celsius to fahrenheit") which = io.read() repeat if which=="f" ...
-1
votes
1answer
64 views

Why doesn't this order of code work properly?

So I've been working on part of this program for a few hours straight. I have a few lines of code that have stumped me for over an hour now. It just doesn't make sense. I read the lines over and over ...
0
votes
1answer
35 views

php mysqli result object cannot immediately be referenced in if statement…?

//Execute query and fetch first row if ($qry=$db->query("SELECT statement")) { if ($row=$qry->fetch_object()) { } } //Same code as above using only one if statement if ...
0
votes
0answers
11 views

Check if FOR has reached number when iteration direction is unknown

This question is purelly logical, which makes it hard to formulate. I will be given two numbers, number1 and number2 and I want to make some action smoothly, if the steps are too far away from each ...
1
vote
4answers
49 views

Is there a right or wrong practice when using IF statements : if(foo) or if(foo == true)?

Throughout my (short) career so far in programming (merely a student working on internship) I have noticed that when it comes to IF statements, there is two different ways of doing it. If we take foo ...
-3
votes
1answer
41 views

Require help on a logical issue

I'm not sure how I can make the final 'else if' statement work correctly. The code in question is currently hashed out and is located at the very bottom of the program. Reading the other 'else if' ...
3
votes
5answers
204 views

Anyway to shorten if ( i == x || i == y)?

I tried to shorten my code, from : if(i== x || i == y || i == z ) to if (i == ( x || y || z )) I know this way is wrong because I got incorrect i in log. However, is there any method to shorten ...
0
votes
1answer
59 views

Logic to use to find out if the entered date is today or later

I have function that loops every 500ms, and collects date information: var mlptoday = {}; var timer = setTimeout(today,500); function today(){ var d = new Date() mlptoday.date = ...
0
votes
3answers
46 views

If expression with question mark. What does it translate to with a normal if else instruction

I have this expression which I know is an if statement...but what does it translate to? flag = flag?0:1; Is it : if (flag==flag) flag=0 else flag =1 if this is the case then flag will become 1 once ...
4
votes
3answers
45 views

if…else issued: removing the matched variable

i am new to coding and can't establish idea for easy logic.. ok, I have written a code firstly have a look: <?php function month_ana($mna){ $c_mna = strlen($mna); echo "Let's ...
0
votes
4answers
105 views

Logic operators on Structures in C

Suppose I have two different structures, Struct1 and Struct2. They both have different elements in them. What happens if I compare them like this: if((Struct1) && (Struct2)) { ...
1
vote
2answers
79 views

CodingBat: cigars and squirrels

I recently discovered how much I enjoy websites like codingbat.com and codeacademy.com, and I've been doing a lot of those exercises in my spare time. One codingbat.com problem goes thusly: ...
-1
votes
3answers
112 views

C++ evaluates underlying if condition in a while statement

I have a problem that when c++ evaluates the while statement, it also evaluates the underlying if statement even if the while statement condition is not met. ite_candidats is a custom iterator on a ...
0
votes
3answers
150 views

Programming logic IF Then

I deal with this type of issue all the time and was wondering if you had any slick elegant work arounds: if(myObject != null && myObject.myProperty != myValue){ //do something }else{ //do ...
0
votes
3answers
117 views

Does these PHP if statements have a logic error?

Below is a script that is run when a Change Password button is clicked for a form. The form contains 2 password fields, one for the new password, and one for confirming the new password. Here is the ...
1
vote
2answers
81 views

Quantity in Cart Model Basic Logic Ruby on Rails

I am trying to apply some very basic logic to my view but am so far failing. What I would like to do is return item.discount_price if there are the following conditions: The item.product_id is ...
-1
votes
2answers
182 views

How are logic gates written at their most basic level? [closed]

In C, like many other languages, there is the if statement. You can use that logic when writing other languages, like C++ or Ruby. However, how does the lowest-level if statement work? How do ...
0
votes
3answers
73 views

Writing in acceptable values into if statement [closed]

I'm having a little trouble getting this to work, trying to evaluate two values and result in a rule violation but accept N/A as the only acceptable value outside of the values equaling. here is what ...
0
votes
3answers
102 views

Bypassing in-line if statements? Python [closed]

So I'm making a video player that automatically chooses the next video based on some weighted probabilities. When a video comes in, it reads all its metatags from a csv, then looks up the next match ...
1
vote
1answer
89 views

Homework: Algorithm to determine the two most popular items in a shopping cart

I'm trying to determine the two most popular items in a user's shopping cart. Each time the user adds or removes an item to/from the cart a function updatePopularity(Item item) is called which is ...
0
votes
2answers
90 views

php if is bigger than

I had problem with php I just dont get it, here is my code $pieces = explode("|", $result); if (count($pieces) == 3){ $size = $pieces[2]; echo "here"; if($bw>=$pieces[2]){ ...
-1
votes
4answers
128 views

I don't understand why logic isn't working as expected

I am creating a method where I must decide in which I am depending on hour of the day by using simple else / else if / else statements. I don't understand why program is going straight to the else ...
-1
votes
5answers
131 views

Precedence of AND and OR into an IF statement

Are equivalents these statements? if ($a || $b && $c) { // ... } if (($a || $b) && $c) { // ... } EDIT What a beating! But worth it... THX to all!
0
votes
3answers
180 views

VB.NET logic order in if statement

I'm new in VB.NET, but for C, C++, C# and other languages I had some years of expericences. This problem for me is very weird because I never met it before. I have this line of code: If obj is ...
1
vote
4answers
417 views

Nested If/Else control flow being executed when it shouldn't be - logical operations error probably

I've got this code: def time24hr(tstr): if ('a' and ':') in tstr: if tstr[:2] == '12': tstr = tstr.replace('12', '00').replace(':','').replace('am','hr') return ...
1
vote
2answers
78 views

More elegant way of handling this logic

private bool SearchFilter(object sender) { CommDGDataSource item = sender as CommDGDataSource; if (FilterPropertyList.IsErrorFilter) { if (!item.Error) return false; ...
0
votes
1answer
67 views

LOOP if-simulation, need help to understand

I have somehow hard time in understanding the following program in LOOP (you can also read the article in its original German), which is supposed to simulate IF x=0 THEN A END. y:=1; LOOP x DO y:=0 ...
0
votes
1answer
78 views

Jquery logic if x checkboxes ticked show div quiz

I know this is a simple and lame thing. I need to build a small form where if the user checks 1 checkbox show div a, if two are checked show div b and if three or more are checked show div c. Any ...
1
vote
1answer
86 views

Cocos2d if statement logic not working

The if statement is: //these x & y do not affect the if statement they are used for the result 6 lines down. int x = enemy.position.x; int y = enemy.position.y; NSLog(@"%G,%G", ...
-1
votes
1answer
252 views

Does Lua have OR comparisons?

I'm just starting out using Lua, and I was wondering (because I can't find it on the website) if Lua has a OR operator, like how in other languages there is ||: if (condition == true || ...
2
votes
5answers
277 views

Which Logic Operator Takes Precedence

So, I'm looking into writing a slightly more complex operation with logic operators in an if-else statement. I know I can do parentheses, and I know it's the better way of doing this, but I've gotten ...
2
votes
4answers
155 views

Check value against values in array and return key using PHP

Problem: I have a value that is set in $record, for instance 1.69. Then I have an array that contain different grades and values. I would like to compare $record against the highest value first to ...
2
votes
2answers
103 views

Python accumulative conditional logic

I am struggling with the logic for the problem below and I know that even if I nailed the logic, I would probably implement it clumsily, so any advice would be awesome. I have a dictionary ...
0
votes
3answers
99 views

What is wrong with this if statement logic in JavaScript?

if(stringName.charAt(0) != 'Q' || stringName.charAt(0) != 'W' || stringName.charAt(0) != 'E'){ SetID = "Yes"; } The above code when I use alert to popup the windows the value of ...
0
votes
4answers
461 views

Comparing multiple values at once using &&

I have this code: if ((total == (total1 && total2 && total3))) { [scrollview.contentOffset = CGPointMake (0,0)]; } here is what it's something like on button ...
1
vote
2answers
229 views

simple logic for loop C++

I am trying to write simple program using ONLY for loop (if then statement is allowed i think) And I am having trouble getting the highest snow date "calculated" from a bunch of user inputs. This ...
4
votes
2answers
6k views

How to solve && operands to logical scalar

After I run the code in matlab, I encounter this error and unsure how to solve it. How can I solve this problem. Warning: Operands to the || and && operators must be convertible to ...
1
vote
6answers
706 views

PHP operators if statement 'and' and 'or'

I have an if statement that I want to control with having one field needing input and they have to pick one of the other 2 choices. if(test1 && test || test3){ //Something here } Should I ...
1
vote
2answers
4k views

Else if, or statement in Xcode. Not sure what I'm doing wrong

I'm not sure what I'm doing wrong, but Xcode keeps saying "Expected expression". What is wrong with the else if, or statement below? else if ([currentClass rangeOfString:@"English"].location != ...
1
vote
4answers
149 views

If statement doesnt seem to work

if ((clearance.equals("")) || (!clearance.equals("0")) || (!clearance.equals("1"))){ System.out.println("Invalid entry, exiting.\n"); System.exit(0); } However when I key in 0 or 1 it still ...
2
votes
2answers
243 views

using while loop to compare loan payment with monthly interest - logic error

I am currently working on a while loop that should get the following information from the user- loan amount, annual interest, and monthly payment. It should compare monthly interest to the monthly ...
0
votes
1answer
44 views

IF statement with OR and NOT operators does not work as expected

<?php $param = 'c'; if ($param != 'a' || $param != 'b') { echo 'Param != a OR b'; }else { echo 'Param = a OR b'; } ?> The if statement above does not work as expected because the ...

1 2