Tagged Questions
The nested-if tag has no wiki summary.
5
votes
10answers
175 views
What's the right way to handle “One, Both, or None” logic?
I have a logic situation that is best described as two "Teams" trying to win a task. The outcome of this task could be a single winner, a tie (draw), or no winner (stalemate).
Currently, I'm using a ...
3
votes
7answers
452 views
Help refactor this messed-up-nested-if of a method
Ok I want some opinions how I can fix this mess of a method!
It has WAY to many nested 'if' statements.
But realize I have to know exactly where the method fails, currently in each of the respective ...
2
votes
3answers
245 views
Performance question on nested if's
is there be any performance effect on "Lines of code - (C)" running inside nested ifs?
if (condition_1)
{
/* Lines of code */ - (A)
if (condition_2)
{
/* Lines of code */ - (B)
...
1
vote
2answers
31 views
removing nesting of if statements
I have a piece of code, which I am not sure how to refactor.. It is not very readable and I would like to make it readable. Here is a the problem
There are two columns in database which can be either ...
0
votes
3answers
82 views
PL/SQl nested If loops inner if loop not exiting
Hi everyone I am a bit new to PL/SQL so am a bit confused. I have a Cursor called rec and while looping through it I have two nested IF statements.
CURSOR Cur IS
SELECT Mil.Id,
...
0
votes
1answer
56 views
Nested ifs to test if one or both of two conditions is true
I have an object, data, that may or may not contain the members site_with_same_coords and/or site_with_same_name. I test for these and if one or both exist, I alerts to the user:
if ...
0
votes
2answers
56 views
Optimizing a large group of IF statements
I have a large group of nested IF statements and I was wondering If anyone had any suggestions on how to optimize for speed, size, and readability.
Below is a sample of ONE of the if statements and ...
0
votes
3answers
539 views
Nested if or switch case statement
From the point of view of optimizing the code run time, is there a thumb rule for where to use "nested if" statement and when to use "switch case" statements ?
0
votes
2answers
237 views
ExpectJ Adventure
This is my script
echo "Name:"
read name
if [ "$name" == "abcd" ]; then
echo "correct username"
echo "Password:"
read password
if [ "$password" == "pwd" ]; then
echo "Hello"
...
0
votes
2answers
402 views
Nested-If statements in Shell-scripting
This is my script:
echo "Name"
read name
if [ "$name" == "abcd" ]; then
echo "Password"
read password
if [ "$password == "pwd" ]; then
echo "Hello"
else
echo "Wrong password"
fi
...
0
votes
4answers
1k views
nested if in haskell
//edit 5
when the i use only these 2 lines
index :: [String] -> [String] -> Bool
index a b = and [x `elem` a |x <- b]
it works fine!!!!
eg:
index ["asd","asdd","dew"] ...