In computer programming, a switch, case, select or inspect statement is a type of selection control mechanism
0
votes
1answer
72 views
Linux how to use rm and exclude switch
Hi guys I was wondering how we can use linux rm command with --exclude switch?
For example like grep has exclude function when searching over the files.
0
votes
1answer
33 views
php Switch statement and 0
Hi i see a code today like that
$i=0;
switch($i){
case 'TEST': print "Test";break;
case 0: print "0";break;
}
The normal output seems to be 0 but it prints Test. Then i try to understand ...
-1
votes
2answers
65 views
Unable to make recursive call to same subroutine using perl switch statement
I am using switch statement to check the argument provided on the terminal.
The provided script is working fine if the end user provide
$perl test.pl -help
but when user is giving the under ...
0
votes
3answers
73 views
Powershell Switch - Set amount of choices based of the amount of Array elements
I'm trying to create an "switch" statement that will have amount of choices based from the amount of returned objects.
First Example:
[array]$A1 = ("QWERTY", "ASDFGH")
so the "switch" function ...
3
votes
4answers
208 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 ...
1
vote
1answer
21 views
Controlling switch using java but not xml in Android
Is there a way that I can control the switch in the java source but not in the .xml ? I want the switch to be on/off depending on a preference I've saved.
1
vote
1answer
64 views
java switch cyclomatic complexity vs performance
I have a case here where the switch statement contains about 40 cases of each returning a different configured object based on input. This method is shown as having too high cyclomatic complexity in ...
0
votes
2answers
33 views
Ignoring invalid entries
My title isn't exactly the best but I'm not sure how to name what I am trying to do. Either way, I have a case-switch...
switch (input) {
case "A":
Item item = new Item();
...
0
votes
1answer
42 views
Coffeescript: unexptected then in a switch statement
I'm trying to use a simple switch statement but it doesn't compile. Here's the code:
tag = 0
switch tag
when 0 then
alert "0"
when 1 then
alert "1"
The coffeescript ...
3
votes
2answers
98 views
switch case in java by strings < 1.7
function checkValue(value) {
if (value === null || value === undefined || value === '') {
return '-';
} else {
switch (value) {
case true:
return 'Yes';
...
0
votes
0answers
17 views
Network traffic between 2 servers using direct link and network
We have two servers both with two network cards.
Both servers are connected to our network to our standard network
10.11.0.X (255.255.255.0)
Server A- 10.11.0.1 – nic1
Server B- 10.11.0.2 – nic1
We ...
1
vote
2answers
37 views
Switch-Case using quote (')
This is my code, it gives me an error when I wanna check if the case is '
Case: '.' Case: '?' Case: '!' Case: '''
How do I fix this?
0
votes
7answers
83 views
JavaScript switch statment 1-100
I am trying to write a JavaScript switch where the user enters a number from 1-100 and they receive a message based on what range the number falls into. This is what I have written so far.
I am doing ...
2
votes
4answers
98 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
1answer
34 views
Android using switchpreference to set color background
How can I change the color of the app I'm trying to develop.
I have used a switch statement under preferences menu, but do not know how I can code this, so that when the user clicks on the switch, ...
0
votes
1answer
44 views
Using integers with dictionary to create text menu (Switch/Case alternative)
I am working my way through the book Core Python Programming. Exercise 2_11 instructed to build a menu system that had allowed users to select and option which would run an earlier simple program. the ...
0
votes
1answer
52 views
Lauch parameters / flags / command line options / switches in Perl
As you see, I'm not completely sure what they're actually called.. I'm talking about when I launch a file, for instance client.pl. I would normally launch this by typing perl client.pl in terminal.
...
0
votes
3answers
52 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 ...
6
votes
4answers
59 views
Using logic inside a switch statement
My question is related to the following code:
public static void main(String[] args) {
// Find Prime Numbers from 0 to 100
int i;
for (i=2; i <= 100; i++) {
int j = 2;
...
1
vote
5answers
110 views
Switch statement within while loop in C
Thank you guys for your help. Your guidance helped me better understand what I was doing wrong.
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
5answers
59 views
Switch statements not executed inside a loop and loop not looping
Problem solved! Thank you guys!!!
Here is a question regarding C#.
I have a menu with 4 options:
Add words
Show word list
Play
Quit
I have made it with a switch and the switch is inside a while ...
3
votes
2answers
72 views
Java switch double duplicate case
I'm creating a chess game with java.
As you know when you start out the chess game you have two of each "Captains" (sorry I'm not sure what the term is) I have created the following switch case to ...
1
vote
6answers
83 views
Modulus of an integer
I'm writing a program that gets a dollar amount from input and displays the amount in words. Unable to use strings, arrays, or functions at this point, so I've worked it out with switch structures, ...
0
votes
3answers
35 views
How can I make my function execute even when no parameter is entered?
I'm teaching myself PHP through a book and to make this easier I made myself a function to save myself having to write echo "<br/>"; a million times. My function works fine but after ...
0
votes
2answers
30 views
Regarding storing input into a string, and using cout to display it
I am writing a program that will request a user input of INT, and store it in an array of [10]. I want to be able to get the user to select the option DISPLAY and see all the data within the array. I ...
0
votes
2answers
38 views
C++ cannot figure out how to jump into the switch from user input
ok so i am writing a console application that uses a switch to display products and prices. however i am having hell figuring out how to make it jump into the switch when the user inputs the product ...
0
votes
0answers
31 views
Converting a list of digits into integer
For example, if I want to convert a list of digit into integer i.e if I have this (Digits, [1,2,3,4,5 ) and want the output like [ Digits = 12345 ] in prolog, how could I do that?
0
votes
3answers
126 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
16 views
Problems with the “innerhtml” function of shadowbox
I have a pretty weird problem and no clue how to solve it. Maybe you guys can help me out here.
Using the innerhtml function of shadowbox I accomplished to load the content of a certain div container ...
4
votes
2answers
54 views
Button backgroung is not changed in switch case?
I am developing a sample game application, in which i need to change four button images randomly. for, i am using following logic. but, i am unable to change button background in switch case.. so, ...
0
votes
0answers
60 views
Set height for android switch widget
I'm running 4.0 and greater and embedding an android "Switch" in my xml layout. I'd like to control the size of this widget. Setting layout height did nothing... Any ideas?
<Switch
...
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:
//....
...
0
votes
2answers
57 views
Trouble with classes in Java
I am kind of confused because I cannot figure out what am i doing wrong here. I have done almost everything I could but it is still not working. I am now clueless how to go forward from here. Please ...
2
votes
2answers
45 views
How to pass limit into another class with switch?
I want to pass in choice (derived from same class) and then pass limit to another class that will use the limit. I'm getting errors on the below.
public int ProcessChoice(int choice)
{
...
0
votes
2answers
80 views
Switch Statement and Strings [duplicate]
If i get the user to input a value in String from the menu output on the screen. How can i use that input for a switch statement? it keeps it can be only used for int.
For example, if a user enters a, ...
0
votes
1answer
37 views
Pass value thought switch case php in wordpress
HI I'm making a metabox plug for wordpress and get a problem:
when getting the info from the meta box (metabox has a text area and a radio) I use:
foreach ($rian_meta_box['fields'] as $field) {
...
0
votes
1answer
39 views
Proper way of listening to a lot of Buttons each of which does something else Android
I have a bunch of buttons to listen to.
Each button increments or decrements a value in an EditText.
Since every Button changes a different EditText I'm left with just switching.
There are quite a lot ...
1
vote
2answers
61 views
Switch Statement instead of if statements
i created a class with switch statement that prints out the name of a polygon based on the number of sides chosen by the user. The problem I cant figure out is how to do this when a side is less than ...
3
votes
7answers
97 views
Switch case for two INT variables
Consider the following code :
if (xPoint > 0 && yPoint > 0) {
m_navigations = Directions.SouthEast;
}
else if (xPoint > 0 && yPoint < 0) {
m_navigations = ...
1
vote
1answer
51 views
PHP preg_match: linking single or multiple images via class function
Hey fellow programmers,
What I'm trying to accomplish is a dynamic way to source images from a directory with the use of a class image.
I'm stuck at supplying an exact string which returns a match ...
0
votes
2answers
120 views
Why my switch don't work?
I'm making a chronometer(10 seconds) using System.currentTimemillis. And I have in a method that is refreshed 10 times per second the following code:
Start is the starting time of the activity, that ...
1
vote
1answer
41 views
php use switch within echo statment
I need to use a statement like switch within echo statement
I found a way for this ,but i think this is not the best way for this
when we want to use IF inside echo,write some thing like:
echo ...
0
votes
1answer
38 views
switch case loop with onListItemClick
I have a listview, and can start activities with onListItemClick using switch cases manually:
case 0: case 1: case 2: .......
but I want to get count of listview items dynamicly, and use them like ...
0
votes
2answers
63 views
Using getElementByID.innerHTML from within a switch statements case?
Alright so first off, total Newbie here, so my questions answer might be extreemley simple because i have missed some thing critical.
I am trying to have a switch statement, switch out the innerHTML ...
0
votes
2answers
48 views
XNA keyboard input
I've got a small bug with registering the keyboard input.
case GameState.InGame:
{
**if (PlayerInput.IsKeyUp(Keys.P)&& oldInput.IsKeyDown(Keys.P))**
...
0
votes
1answer
27 views
Better implementation of custom user navigation
I have code that generates user navigation depending on a single variable, the users sector id, this is selected when they sign up on the site.
I query the users profile to get the sector id.
With ...
0
votes
0answers
14 views
switching a word within a string from a list of a list
`>reflections = \
[["I", "you"],
["i", "you"],
["We", "you"],
["we", "you"],
["We're", "you're"]]
def sample(string):
string = string.split()
for ...
1
vote
1answer
75 views
jquery case set background-image
I'm trying to set background-image property of one element depending on value of variable. It works only the first time, but when I switch to ready background image stops changing. Images themselves ...
1
vote
1answer
50 views
How to use a wildcard in switch statement
I have data returned from an ajax call: INSERT_OK_something.
I would like to use a switch statement with a wildcard like INSERT_OK_* and pass "something" like a id variable to my url.
switch (data) ...





