2
votes
6answers
514 views
Thorough use of ‘if’ statements or ‘try/catch’ blocks?
Give me some of your thoughts on which is a better coding practice/makes more efficient code/looks prettier/whatever: Increasing and improving your ability to use if statements to …
1
vote
3answers
37 views
Troubles formatting if statements in SQL
I've created the following sql statement, every thing in $() is a variable (comes from the module we're using on our site so $(varname) is the right format in this case, not @varna …
0
votes
5answers
134 views
C++ String manipulation - if stament
I have the following code that works correctly. However after I add an else statement anything always evaluates to else
wgetstr(inputWin, ch); //get line and store in ch variable
…
2
votes
10answers
386 views
One Line ‘If’ or ‘For’…
Every so often on here I see someone's code and what looks to be a 'one-liner', that being a one line statement that performs in the standard way a traditional 'if' statement or 'f …
0
votes
3answers
59 views
Multiple Select Statements within IF
I could use some help to write a prog./sql construct for a report..
The Sql should first check for the prompt & then decide which "select" statements should run
something lik …
0
votes
5answers
142 views
Right way to style brackets? [closed]
Possible Duplicate:
Formatting of if Statements
Does convention state I should style my brackets like this...
if(foo == bar) {
//Do stuff
}
...or is it fine to do them …
4
votes
3answers
127 views
How to tidy up too many if statements for readability
I have an example of some code that I see often in websites that I'd like to improve and would appreciate some help. Often I see 5-10 nested if-statements in a page_load method whi …
2
votes
5answers
235 views
Simple if statement in Java
How do i write an if statement in Java that displays Goodbye! if the variable word contains a letter d?
Thanks to everyone.
0
votes
9answers
285 views
alternative to if statement in java
I am curious to see any alternative(s) to the regular if statements such as
if(x)
do a;
if(y)
do b;
if(z)
do c;
so as you see all if statements are seperate and no …
0
votes
2answers
48 views
Excel Embeded If Statements
In excel is it bad to have about 1000 embedded if statements? I have about 1000 options that I want to pre-populate in other excel fields, what is the best way to do this other the …
2
votes
3answers
143 views
OCaml - For Loop inside If Statement
Coming from a Java and C background, grasping some concepts of Ocaml has been quite interesting. One such is, getting a/multiple statement to run inside a for loop.
let test_met …
15
votes
18answers
2k views
Why is the ‘if’ statement considered evil?
I just came from Simple Design and Testing Conference. In one of the session we were talking about evil keywords in programming languages. Corey Haines, who proposed the subject, …
0
votes
7answers
213 views
Make an if statement shorter
Hay all, I have an if statement. How could I make this as short as possible?
if ( $a < 0 ){
if( $a > -2 ){
echo "standard";
}elseif( $a <= -2 && $a > …
0
votes
2answers
51 views
Prioritize section of IF statement
I've got an IF statement that validates data.
Basically looks like this:
Dim s As String = Nothing
If s Is Nothing Or s.Length = 0 Then
Console.WriteLine("Please enter a val …
4
votes
6answers
389 views
Shorter, more pythonic way of writing an if statements
I have this
bc = 'off'
if c.page == 'blog':
bc = 'on'
print bc
Is there a more pythonic (and/or shorter) way of writing this in python?
