Tagged Questions
0
votes
1answer
36 views
Accessing a returned value from a different case
Hi It's the 3rd time i'm posting this question on this forum and up to now no one has been capable to enlighten me about this situation.
I only pasted the code that matters here and will try to ...
0
votes
1answer
36 views
Passing a value from one case to another in switch statement
So here is a sample code :
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
System.out.println("Please type in a number");
Scanner in = new ...
0
votes
4answers
81 views
Choose of a lot of cases instead of c >= '0' && c <= '9' to 0-9 numbers checking
The following code is part of an intepreter that I'm reading. I'm trying to figure why exactly use this instead of simple c >= '0' && c <= '9'?
switch(ch) {
//...
case '0': case ...
1
vote
0answers
14 views
how can i count the working days of an employee generating 1 2..31 days and the time will only appear to those days using vb.net
Dim cmd As OdbcCommand = New OdbcCommand("SELECT distinct checktime,format(CHECKTIME,'Short Date') as adlaws, format(CHECKTIME,'ampm') as formatz,checktype " & _
...
-5
votes
3answers
80 views
Preventing If within If functions (or cases)
I'm building a code where I have to go trough alot of if/case functions. This on itself is not really a problem only that alot of these if's are the kinda the same.
In my code it has to go trough an ...
-1
votes
4answers
36 views
Register form Error Correction in PHP - Best solution?
I'm looking for as simple approach to correcting errors such as non-matching passwords and people inserting blank data into a form in HTML.
I want to use PHP to throw me back an error when this ...
3
votes
4answers
207 views
Grading system in C++
So this is my C++ question :
Write a program that translates a letter grade into a number grade. Letter grades are
A, B, C, D and F, possibly followed by + or -. Their numeric values are 4, 3, 2, 1 ...
2
votes
4answers
97 views
How do i do a switch case for jQuery?
I have this if-else statement which gave me weird response... whenever i select "output" first, nothing else selected afterwards can appear...
FYI, i am using multi select so i can select and show as ...
0
votes
3answers
51 views
entering if statements without initializing
I'm writing a C++ program library for my Arduino. The library is for a DTMF decoder. I'm having a problem when it comes to adding two detected and validated tones together in order to return the ...
1
vote
3answers
35 views
Why switch and if statement in Javascript treat boolean different, confused
I've got a switch and if problem in Javascript, the code is following.
var a=0;
if(a){
console.log("a is true");
} else if(!a) {
console.log("a is false");
} else {
console.log("a is not ...
0
votes
3answers
125 views
Using case switch instead of multiple if statements for error handling
I am building an application which has a login through a mobile SAAS - Parse.
There are multiple error codes that could be returned from a login request. At the moment run an if statement for each ...
0
votes
0answers
65 views
large switch statement implmentation and efficiency
I have inherited some code that contains message processing code in a large number of places that is implemented as such:
switch(msgType)
{
case msgType1:
//....
...
2
votes
2answers
144 views
Python Dictionary vs If Statement Speed
I have found a few links talking about switch cases being faster in c++ than if else because it can be optimized in compilation. I then found some suggestions people had that using a dictionary may ...
0
votes
3answers
118 views
PHP: switch vs if [duplicate]
Which form is more efficient
This one:
switch($var) {
case 1:
break;
case 2:
break;
}
..or this one:
if( $var === 1 ) {
} elseif( $var === 2 ) {
}
in terms of performance?
0
votes
1answer
25 views
Switch Statement in SRSS
i want to have conditional formatting of the background color of a textbox. i want something like this. IF i ican use the If - else statement its still ok.
=Switch
(
...
0
votes
1answer
89 views
If/else Rails what to look for?
I cant figure out what parameters to select for comparison for the following scenario.
I want to link to a specific page on my site depending upon which scope is being used to grab the data being ...
1
vote
1answer
61 views
how do I use switch and case in a java game?
I'm making a game in Slick2D and I have a lot of 'if' statements and I want to get rid of that. Now this is my code:
if((playerPositionX>570 && playerPositionX<835) && ...
0
votes
5answers
144 views
Rewrite if else into switch
I wrote some if-else statements like this:
if (workedDays > 0 && workedDays <= 180)
{
x= 14;
}
if (workedDays > 180 && workedDays <= 540)
{
x= ...
2
votes
8answers
366 views
If Condition inside switch case [duplicate]
I am trying to convert an if statement to switch cases (for readability)
1) I've read switch statements are aweful in general - Is that true?
...
0
votes
1answer
73 views
if/else jquery between three elements
alright, i am trying to make it so when you click one div it "turns off" the other two div buttons as well as making some content invisible
jquery:
var open1 = false;
var open2 = false;
...
0
votes
2answers
63 views
statement not working in for loop
"The actual issue I am having is that It just stops running after giving out the number of questions. I've corrected the "%d%" to "%d" and its still having that issue"
I'm currently working on a ...
3
votes
3answers
61 views
python - Simulating 'else' in dictionary switch statements
I'm working on a project which used a load of If, Elif, Elif, ...Else structures, which I later changed for switch-like statements, as shown here and here.
How would I go about adding a general "Hey, ...
0
votes
0answers
71 views
Java: Use Switch or If Statement [duplicate]
I've been told that switch statements were faster than if statements. I don't like using switch statements since they haven't been implemented well until recently, (Strings only in Java 5.0) and ...
1
vote
1answer
48 views
If/Else and Switch efficiency comparison in interpreted languages
I know that when source code is compiled, the compiler treats if/elseif/else and switch statements differently making switch statements at least as efficient as a corresponding if/elseis/else and most ...
0
votes
3answers
82 views
why is it recommended to use else if among switch and if in jquery [closed]
Why would be more convenient to do:
var cnt = $("#div1 p").length;
alert(cnt);
if (cnt >= 10 && cnt <= 20) alert('10');
else if (cnt >= 21 && cnt <= 30) alert('21');
...
0
votes
2answers
66 views
Convert if 'with range' to switch statement
Someone asked me today how to convert the following if statement to switch:
int i=5;
if(i>10)
{
Do Something;
}
else
{
Do Something else;
}
And I proposed that assuming i is an integer ...
0
votes
3answers
139 views
Java: testing for String value - works using switch statement and .equals() in an if else statement, but not == in an if-else statement [duplicate]
I am trying to set the boolean variable 'answer' to true or false based on the results of testing the String variable 'response' for a specific value of "Y" or "y".
What evaluates correctly:
Example ...
-3
votes
2answers
116 views
C Programming Switch Case [closed]
C Programming
How to change this if else condition to switch case??
if(n >= 10 && n <= 20){price=2.00;}
else if(n > 20){price=3.00;}
else {price=1.00;}
1
vote
1answer
71 views
Is there a difference in the operations of if/else and a switch statement? [duplicate]
I'm mostly just curious, is using if/else and a switch statement just a matter of personal preference, or do they actually work differently? Is one more efficient than the other? If they are, why ...
0
votes
2answers
521 views
VB.NET How give best performance “Select case” or IF… ELSEIF … ELSE… END IF
I have a huge DataTable, and I need go by each row and validate an specific value.
Which method give me more performance, an structure of IF ELSE or SELECT CASE?
(I'm focused in the method that offer ...
0
votes
2answers
95 views
Beginning Java Decision Structures and The Math Object Switch Statement
Okay, this is what I'm told to do
1.Have the user enter two integersto use for the following tasks.
2.Write a simple if then structure to to check the value of a number entered by
the user and ...
1
vote
3answers
128 views
Using user-inputted characters in If/Switch statements
I am taking my first Java class, and am having a hard time finishing this assignment.
The assignment itself is quite simple. All I have to do is prompt the user to input an integer, a character, then ...
0
votes
1answer
112 views
I need help writing this batch script
I want to have this script execute another script if a file name starts with one thing, another if it starts with another thing, and to continue on through the rest of the code if it starts with ...
0
votes
0answers
40 views
Lengthy if elseif else statement
Admittedly so I am a designer with little to no development background. Really hoping someone can help me out with this.
HTML
<div class="hero">
<h1>This is my header</h1>
...
1
vote
1answer
118 views
if-else faster than switch, why? (in ActionScript3)
Tested the following:
var timer:int = getTimer();
trace(timer);
for ( var g:int = 0; g < 10000000; ++g)
{
var mod0:int = g % 10;
var ...
1
vote
2answers
174 views
JavaScript Switch statement: checking 2 cases at a time
I am a bit confused with the switch statement, i need it for my home page. I'll explain shortly: i have two groups of radio buttons on my html code, each consisting of three buttons. According to the ...
0
votes
0answers
76 views
Dynamic Date Function Using Switch Statement
My original question is here:
Date Update Client-Side on Static Web Page
Since posting that question yesterday, I have tried in vain to create a function that does what I need.
I began to create a ...
0
votes
1answer
169 views
Arduino UNO - data logging
I am using an Arduino Uno for some data logging. I want to oboserve it and start the log with a command from the serial command line. But I also want to be able to close the serial monitor without ...
0
votes
1answer
57 views
Switching different template part in wordpress on window-resize
In my wordpress template I have added my template part in header.php using wordpress function.
<?php get_template_part('desktop'); ?>
I want to add diffrent template part for different ...
0
votes
3answers
92 views
c# Do-While Calling back
I'm stuck in my code!
I have a Do -While Loop and inside I have Switch-Case and each case have If Else Conditions like this :
Here is the problem
Once I press the Retry Button(in If-Else Condition ...
8
votes
4answers
230 views
java: A long list of conditions , what to do? [closed]
I need suggestion for the right approach to apply conditions in Java.
I have 100 conditions based on which I have to change value of a String variable that would be displayed to the user.
an example ...
0
votes
2answers
138 views
Python conversion calculator loop / code efficiency
The following is the (semi) finished version of a simple Mils to Degrees conversion calculator I built in Python 2.7 as a learning exercise. I am new to Python and still working out the kinks. The ...
0
votes
7answers
347 views
How do I transform an IF statement with 2 variables onto a switch function using C?
I have an IF-statement that I want to transform into a Switch-statement... But it has 2 variables! Is it possible to do it on C?
It is a rock, paper, scissors game:
(R for rock, P for Paper, S for ...
-2
votes
4answers
148 views
Is there any reason to use switch statement instead of strings of if and elseif? [duplicate]
Possible Duplicate:
Advantage of switch over if-else statement
Why the switch statement and not if-else?
The switch statement seems to be totally useless. Anything it can do can be done ...
0
votes
3answers
113 views
Looking for a good replacement for elif & if , like switch case [duplicate]
Possible Duplicate:
Replacements for switch statement in python?
Given this method :
def getIndex(index):
if((index) < 10):
return 5
elif(index < 100):
...
0
votes
3answers
98 views
switch case avoid loop
I have the following code:
int send_cmd( int sock, char * buffer, int lbuffer )
{
int err = 0;
//do_something part 1
while(1)
switch(check_status(buffer)){
case 1:
...
10
votes
2answers
197 views
Why is a single “if” slower than “switch”? [duplicate]
Possible Duplicate:
What is the relative performance difference of if/else versus switch statement in Java?
Given the following two methods:
public static int useSwitch(int i) {
switch ...
11
votes
4answers
248 views
Switch seems slower than if
I was curious as to the speed on switch, believing that it was "very" fast, but I have a test case that seems to show a single switch is about as fast as about 4 if tests, when I expected (no solid ...
3
votes
3answers
304 views
How Switch case Statement Implemented or works internally?
I read somewhere that the switch statement uses "Binary Search" or some sorting techniques to exactly choose the correct case and this increases its performance compared to else-if ladder.
And also ...
2
votes
6answers
199 views
Default in Switch case
The below is the code which I need to optimize and planned that it would be good to move to switch. But I can compare in case. So I planned to make the comaparision ( len > 3 ) as default case.
If I ...





