An "if" statement is a control structure in many programming languages that changes the execution flow depending on a condition.

learn more… | top users | synonyms (5)

0
votes
2answers
10 views

GLSL How to avoid multiple checking

This is my fragment shader: #version 120 uniform sampler2D sampler0; uniform bool isf1; vec4 f1(vec4 color) { ... } vec4 f2(vec4 color) { ... } void main() { gl_FragColor = texture2D( sampler2, ...
0
votes
1answer
34 views

PHP shorthand (Ternary) function

In the javascript world we can run a function through a Ternary comparison, I wanted to see if this applies to PHP, it seems it does only to an extent. This is not for production use nor will it be ...
2
votes
3answers
30 views

Console log with if, strange behaviour

I'm trying to leanr some javascript, however I can't quite answer why: var a = 'xyz'; console.log('Example: ' + (a === 'xyz') ? 'A' : 'B'); Gives me back 'A' rather than Example: A. However when I ...
0
votes
1answer
22 views

Java unit converter GUI application

I'm trying to make a simple unit Mass conversion GUI application. I have two combo boxes to select units from, an input box to input a number to convert, and text to display the result of the ...
1
vote
2answers
13 views

Struts 2 <s:if> contains() method not working for string with multiple words

I've got the following code to print a message if the person's account is past due. (alert in this instance = "your account is past due") <s:if test="%{#alert.contains('past due')}"> the code ...
0
votes
0answers
8 views

JS: Chrome browser doesn't execute first branch of IF just statement after ELSE

I tried to write some Javascript code for form textfield validation. This textfield accept only numbers and one letter. I tried this code in Firefox and IE8 (Win7Pro 64bit) and worked fine but Chrome ...
0
votes
0answers
27 views

How to find a file when it's ext unknown and get his ext in PHP?

How can I find a file when it's ext unknown and get his ext in PHP? I wrote this code but its not working (the if returns false)... Thanks. $pos_ext = array('jpeg', 'jpg', 'gif', 'png', 'tif', ...
0
votes
1answer
13 views

Unix bash scripting and using the test -z script

So I wrote a script called MYSCRIPT with this code: if test -z $1 ; then echo "rm: missing operand" echo "'try rm --help'" for more information. fi From my understanding it means: "If the $1 ...
0
votes
1answer
16 views

jQuery inline IF statemenet without the ELSE statement?

I'm trying to shorthand my jQuery now that I have my working script and i'm doing (where necessary) inline IF statements to shorten code. Only issue is i'm trying to do so without using an ELSE ...
0
votes
3answers
30 views

Why doesn't this short bash script/function work? Possible solutions? (UNIX bash scripting)

I am trying to make an error message appear if someone runs my script but a file which doesn't exist is entered as an argument. function finder(){ if test find $1 ; then exit 0 else exit 1 fi } ...
-2
votes
1answer
23 views

String not comparing correct in if statement in iphone app

I have string which shows following ling in NSLog when i compare this it always runs else Records inserted: -1 How to make it works if data is equal to the given text other wise run else ...
0
votes
2answers
35 views

Javascript - Efficiency for scroll event, run code only once

These if statements are always making me dizzy. If have a page with a header, and a hidden header above that in the markup. <div id="headerfloat" style="display:none;"> <p>Floated ...
0
votes
1answer
56 views

Refactoring method of If Statement [closed]

I have validate method and necessary refactoring without if statements. How implement this refactoring? private ActionResult Validate(ServiceScheduler model) { if ...
0
votes
4answers
65 views

what does it mean: if (number) [closed]

I have: float number = 2.5; if (number) cout << "1\n"; else cout << "2\n"; what does it mean: if (number)? maybe if the number is initialized?
-3
votes
0answers
20 views

Implementing a decode in XML

I have to provide codes for 3 different account types. Account name in DB and code given below Current =CUR Saving=SAV CashCurrent=CC I want to modify the below XML to add one more account ...
0
votes
1answer
50 views

IF Condition is Met but skipped to the next IF

I'm not sure why, but while I am trying to debug, I find this is very weird: As you see in the image, the value of in.readLine() is null and in.readLine() == null is true. But why it skips the if ...
0
votes
0answers
15 views

jQuery add/remove class based on jinja variable

Hey all I am trying to add and remove a CSS class based on a jinja variable that changes through an ajax request. The issue is that the first time the ajax is called the class is added or not ...
0
votes
1answer
42 views

Checking for multiple error conditions

I want to verify multiple conditions for validations. Currently, I have it set up such that in case of an error, each condition returns the error message, and an empty string in the absence of any ...
0
votes
0answers
18 views

Do tasks during certain times failing to work correctly, example included

I've created the following bit of code but for some reason the function isn't working how I want it to. Basically, I want the code at 23:40 to 23:49 to set clearscreen to true, which would then mean ...
-1
votes
1answer
54 views

if else in javascript counter timer

Im using a small script to display the amount of time since a given datetime value (passed from PHP query). The script is as follows: <script language="JavaScript"> TargetDate = "<?php echo ...
0
votes
1answer
27 views

If/Else Form For Zip Code/County Filter

I have a website that has specific content for certain counties in the region where I live. I want to create a form that will help the user get to the specific page they need. Because I don't want a ...
-4
votes
1answer
25 views

For/if/else loop has unexpected identifier

function hitPlayer() { for (var i=0; i<4; i++); { if i==0; { turnCard('hit5'}; } else if i==1; { turnCard('hit6'); } ...
-1
votes
2answers
27 views

Can we create recursive functions only by using if-else statements? [closed]

I have to show if a program containing only if-else statements is able to calculate the following type of functions: [f(x)]^n. The function f is applied n times on x, so I guess this is a recursive ...
-1
votes
4answers
41 views

Multi else if : if hasClass then do something [closed]

Still pretty new to JavaScript and jQuery but considering the code below, how would you simplified it? I mean, the first 2 conditions execute the same function except for a specific integer. The last ...
2
votes
4answers
106 views

Nested if-else behaviour without braces

Consider the following unformatted nested if-else Java code if (condition 1) if (condition 2) action 1; else action 2; My question is: according to the Java language specifications, to what if does ...
0
votes
1answer
16 views

VB.NET Form, Continually check process and show Button/TextBox

I am attempting to create a form using VB.Net that checks if the IExplorer process is running and then display a RichTextBox (which advises the user to close IE) is the process = 1 and a Button to ...
1
vote
6answers
139 views

how to get out of “if” loop in c?

if(turn==2) { if(forward) /*then what to do if this if comes true for coming out of outer loop*/ if(columnHead>0) { columnHead--; addr[columnHead] ...
1
vote
4answers
85 views

if statement code style with returns

Say I have this functions: inline bool fileExists(const char *name) { FILE *file; if (fopen_s(&file, name, "r") == 0) { fclose(file); return true; } else { return false; } } ...
-4
votes
3answers
49 views

I'm not getting something. String == String False [duplicate]

Why is this False? I can't get it. DataBaseHelper.getBoolean(); is a string value. In this if statement it outputs the same result but it says it is not equal with each other.. String a = ...
1
vote
4answers
44 views

Ruby on Rails If…Else

I have the following code: <div class="category_name"> <%= current_user %> <%= review.user.front_name %> <% if current_user.name = review.user.front_name %> ...
28
votes
3answers
837 views

Most efficient way of making an if-elif-elif-else statement when the else is done the most?

I've got a in if-elif-elif-else statement in which 99% of the time, the else statement is executed: if something == 'this': doThis() elif something == 'that': doThat() elif something == ...
0
votes
1answer
22 views

How to find the last element in an array in unix?

How can i find the last element in an array in unix? I need find the last element in an array to do an if-statement: if [ #last_array ]; then #Do something fi How can i do it? Can ...
0
votes
1answer
33 views

C# - Controlling Program Flow in If Statements

I have the following code in C#: if (FileUpload_Certificate.HasFile == false) { Label_Error.Visible = true; Label_Error.Text = "Error Message: Please upload your digital certificate"; } else ...
1
vote
1answer
43 views

How to set condition inside Jquery .Live () function

I am calling live('click') function in which i call ajax method and do some server side functionality. But before ajax call i need to check for valid data. Am bit confused how to call it // Depend ...
1
vote
0answers
56 views

Why is the grammar for this code ambiguous?

I was searching through SO and I found this question that caught my eye. Recursive descent parser implementation Basically this person has this context free grammar for if-then and else-then S ...
1
vote
2answers
70 views

input in if condition in python

Can inputting and checking be done in the same line in python? Eg) in C we have if (scanf("%d",&a)) The above statement if block works if an integer input is given. But similarly, if ...
0
votes
1answer
42 views

How to code an if(condition) loop that keeps generating a random matrix until it gets a close enough match in R

I am working with data simulation techniques that generate a random data set based off of a correlation matrix entered by the user. What I noticed after a while was that some randomly generated ...
0
votes
1answer
34 views

Applying an IF STATEMENT to my word generator

When I try adding an "if" statement to my word generator I get an error stating "Expected Expression". If I take the if statement out, it works fine but what I want to do is have several word ...
3
votes
2answers
26 views

Sass @if true statement not working function

I am trying to make a function which converts a pixel size to ems or rems. The function is as follows: @function px2em($pixels, $fontSize: 16, $rem: false) { @if $rem == true { $unit: ...
0
votes
1answer
10 views

If I want to list multiple variables in one 'if' command in unix, how would I do it? [Beginner]

so I have a really basic question here which I'm sure any experienced user can answer quickly! I'm just not too sure what to search to find the answer! So lets say I was write an 'if' command in a ...
0
votes
4answers
48 views

unexpected End of File error in if else statement

I keep getting unexpected End of file error while running a if else statement #! /bin/bash echo -e "1: Proband\n 2: mincount\n Enter an option:" read promin echo $promin if ($promin == 1) then echo ...
0
votes
1answer
39 views

Load different JS based on users location

I'm trying to make my website load different js files based on users languages. Possible? I got this javascript application: test.js <- inside this i can define the language (default eng) So ...
0
votes
3answers
46 views

PHP: add If condition within the line

if($i==6) { $result .= '<a style="display:none" class="fancybox" data-fancybox-group="gallery" href="'.$value['images']['standard_resolution']['url'].'"></a> '.$caption.PHP_EOL;;} ...
0
votes
1answer
44 views

Switch statement problems with AS3

I'm trying to make simple collision detection using the switch statement. The statement takes the y position of a certain object and then it detects if the object's x is the same as another object. ...
2
votes
1answer
36 views

How to rotate pictures of a background of layout in android through java in a timer?

I'm trying to have the relationship.xml have its background changed from one image to another. It starts off as the red image and its supposed to change to the cosmos image after the timer and then go ...
0
votes
1answer
40 views

setInterval only working inside of if(){} block

So I think there is something key to be picked up from this situation I encountered and was hoping some experience could explain it. When I run this code, it does NOT work: t5 = "nikolas"+t4; ...
2
votes
6answers
4k views

How to check if a string starts with one of several prefixes?

Ive got the following if statement: String newStr4 = strr.split("2012")[0]; if(newStr4.startsWith("Mon")) str4.add(newStr4); I want it to include startsWith 'Mon' 'Tues' 'Weds' 'Thrus' 'Friday' ...
6
votes
2answers
8k views

How to detect window size and then do something with jquery switch statement

i would like to check for the window size with jquery and based on the different resolutions i would like to change the background image. So i was thinking to somehow use the "switch" statement for ...
18
votes
2answers
39k views

Can I have an IF block in DOS batch file?

In a DOS batch file we can only have 1 line if statement body? I think I found somewhere that I could use () for an if block just like the {} used in C-like programming languages, but it is not ...
13
votes
5answers
15k views

What is the relative performance difference of if/else versus switch statement in Java?

Worrying about my web application's performances, I am wondering which of "if/else" or switch statement is better regarding performance?

1 2 3 4 5 167