Tagged Questions

1
vote
3answers
91 views

jQuery Switch Case Plugin?

I know the switch case statement is inherent to javascript and you can't change it. I'm still learning javascript and jQuery so I can get by, but I don't know enough to write something that might be …
2
votes
9answers
315 views

Why does this program not output 20?

#include<stdio.h> int main() { int a = 1; switch (a) { int b = 20; case 1: { printf("b is %d\n", b); break; } …
0
votes
3answers
166 views

Working on php switch-case logic

I am working on accessing a db table that will read through a text entry to find a string...then based on that string, create a new variable. Here's the source: <?php $haystack = "Additional …
1
vote
9answers
185 views

need to create a summary of a large switch statement in C#

Alright, i dont know how to explain it well.. but i have a switch statement, string mystring = "hello"; switch(mystring) { case "hello": break; case "goodbye": break; case "example": break; } of …
0
votes
3answers
80 views

Random AI / Switch case?

So I have a very simple game going here..., right now the AI is nearly perfect and I want it to make mistakes every now and then. The only way the player can win is if I slow the computer down to a …
3
votes
5answers
252 views

C# switch in lambda expression

Hello, Is it possible to ha ve a switch in a lambda expression ? IF not, why ? Resharper display it as an error.
0
votes
4answers
62 views

return variable approach

Ok I have ten variables but one needs to be set, but I need to check for each of the values until one is set. I'm doing a SWITCH/CASE statement but I'm not sure if this is the best approach because I …
0
votes
2answers
142 views

referencing each case of a switch from a conditional inside a different method in java

Hello, I am implementing some methods which use switch statements to distinguish between different cases: private void doThis(){ switch(command){ case on: {status = doCalculationsA; break;} …
1
vote
5answers
176 views

what is the alternate way of doing function of switch-case (and if-else) in c?

what is the alternate way of doing function of switch-case (and if-else) in c?
0
votes
8answers
393 views

What is the best/easiest way to use nested switch/case statements?

What is the better practice of the following two switch/case statements? Is there an easier way (less code) to do this? switch (myValue) { case 1: { methodFor1(); break; …
1
vote
4answers
380 views

Does the C# switch statment need a break; [closed]

Is C# true to C++, needing a break; per case:? ..Default is fall-thru - Unlike VB OR will it automatically break out of a case once found? ..Default is break - Like VB Edit: So it is a combination …
2
votes
4answers
1k views

switch case vs if else

I was wondering if there was any difference in the way the following code was compiled into assembly. I've heard that switch-case is more efficient than if else, but in this example I am not quite …