Tagged Questions
1
vote
2answers
49 views
Comparing Array Key values to determin conditional statements the OOP way?
I have been looking at this problem for quite sometime and finally created my answer.
I have three array keys that will output different values. The condition of each key will either be true or NULL ...
0
votes
1answer
28 views
Condense switch statements in bash; cards [closed]
So I have this completed code here, but I wanted to make it more efficient, specifically the switch statements. I know there's a way to print out all the suites and denominations results by ...
-1
votes
4answers
35 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 ...
0
votes
3answers
70 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 ...
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
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, ...
-3
votes
4answers
118 views
Using int array for switch case
I am fairly new to C and I am trying to use an int array as option numbers for a switch like this
void totalEntered(float * total, float * inputFigure)
{
*total = *total + *inputFigure;
}
int ...
0
votes
1answer
47 views
Benefits/Drawbacks of storing data in data structures, rather than embedding them in if/switch statements
For Example, suppose I wanted to enumerate a list of strings { "ALPHA", "BETA", "GAMMA", "OMEGA" }. Two ways I can think of doing this:
--- Method 1 ---
string getType(int a)
{
switch(a)
{
...
0
votes
1answer
54 views
count points for elements in array with javascript switch case statement
I am creating a jackpot game that generates an array based on haw many times a given image appears. and then calculates how many 0(card not used),1(different cards),2(2 same cards),3(same cards),4(4 ...
1
vote
5answers
197 views
How to store a list of Cases from Switch Statement?
In my program I have a listbox that when the user double clicks an object it looks to a switch statement to see what event should occur. As the list begins getting larger I'm curious if there is a way ...
1
vote
2answers
263 views
using an array for a switch case statement in java
I'm making a game, and i want the controls to be editable. well, i've got that part down, but they are being read and changed in a .txt file. that is the way i wanted it to work for now. the values ...
5
votes
3answers
181 views
Converting numbers to text, C++
For an input number say 232, I wanted to be able to write out the number in text form: two hundred thirty two. I have an array which holds these numbers
Array[0] = 2, Array[1] = 3, Array[2] = 2.
...
1
vote
3answers
91 views
Failing to Instantiating String Array Inside Switch Statement - Java
For some reason the String[] champs isn't being instantiated and I can't seem to see why
Shouldn't champs = new String[]{ "BLAH", "BLAH", "BLAH"}; initialize the array?
public static String[] ...
0
votes
2answers
126 views
What in this php switch statement is breaking my code?
This code snippet is just a small part of a larger php file. Currently, the file produces nothing when run (as befits PHP) but when I comment out this section (below), the file executes. Thus, I'm ...
2
votes
4answers
161 views
PHP Optimizing a Very Long Switch Case Statement
Please have a look to below code
function GetAreaName($AreaCode)
{
switch ($AreaCode)
{
case 201: return 'New Jersey';
case 202: return 'Washington';
// this goes on till
case ...
1
vote
2answers
254 views
Undefined Variable - Do Switch Statements have scope in PHP
Hello to all this is my first time posting, thought it would be good since im utterly stuck. It was my understanding that switch and If/else statements in PHP do not have variable scope.
My issue is ...
-1
votes
2answers
124 views
Notice: Undefined offset error in array with switch
This is my PHP CODE for Menu with selection.
Its working with errors, please help me.
CODE
<?php
$page_url = array();
$page_url[0]= ...
2
votes
4answers
352 views
php switch case: if we have 30 options, do we have to create 30 if statements or is there an easier way?
I found this code below and it works perfect for what I want BUT I have over 30 options is there something else I can do to shorten the code?
<html>
<body>
<form method="post" ...
1
vote
2answers
146 views
Storing a lambda in a array got by switch statement, then use it
In my script (for Ruby >= 1.9) below I defined a Table class, which responsability is to generate 2 to 10 addition or multiplication table (chosen with a parameter). Then I call table method from a ...
1
vote
4answers
2k views
Case label does not reduce to an integer constant in C?
I am working on a game and I ran my code and got the error "case label does not reduce to an integer constant." I think I know what this means, but how do I fix it? Here is my code:
...
0
votes
2answers
134 views
Java/Android: virtual dispatch, switch-case, or Array access
I know that "test it in your app" is a must. Nonetheless, I would like to ask for an analitical insight as well.
I have an in-app instruction queue (as an Array) which elements are processed ...
0
votes
5answers
410 views
Fill an array with random characters chosen from a list without duplicates
I am trying to fill an array with 4 of 6 different characters where each character in the array is different. The character that is placed into the array is based on a switch statement. Then I want ...
1
vote
5answers
266 views
Making a switch statement in C with an array?
I am trying to make a switch statement that takes in a word into an array and then throws each letter through a switch statement and allocates a point to each letter depending on which letter it is ...
1
vote
4answers
300 views
PHP Array and Switch Case Statement
My Code wont work.
It just prints out the default
Here is the php
$updatesQuery = "SELECT * FROM updates WHERE Isnote = 0";
$rs = mysql_query($updatesQuery) or
die("SQL: ...
2
votes
2answers
95 views
How to paste [array count] to case:
I have switch. One of the cases must be a count of array:
int count = [array count];
switch (someValue) {
case 0:
[self foo];
break;
case count:
...
0
votes
1answer
101 views
Spinner force closing
Im trying to test the functionality of my spinner with a toast. I am having trouble because instead of toasting ShowTime, it force closes. my logcat is posted below the code. If anybody can help me ...
1
vote
3answers
337 views
Null Pointer exception with array of objects
The following program I'm creating will allow the user will input values to create an array of videos. Each video contains several data fields (number, title, publisher, duration & date). The ...
0
votes
4answers
132 views
multidimensional index by array of indices in JavaScript
Is there a way in JavaScript to select a element of a multidimential array. Where the depth/rank/dimensionality is variable and the keys are given by a array of indices. Such that i don't have handle ...
0
votes
4answers
915 views
Java: Switch statements with methods involving arrays
Hi guys I'm currently creating a program that allows the user to create an array, search an array and delete an element from an array. Looking at the LibraryMenu method, the first case where you ...
0
votes
1answer
168 views
PHP script to show different array depending on button pressed
I am writing a PHP script that asks 4 yes/no questions and depending on the answers, displays what animal you are thinking of at the end, it is not finished yet though. I have done the first 3 sets of ...
3
votes
5answers
518 views
Build a switch based on array
I want to create a Javascript switch based on an array I'm creating from a query string. I'm not sure how to proceed.
Let's say I have an array like this :
var myArray = ...
3
votes
6answers
236 views
PHP switch, why doesn't this work?
I have a strange problem that I can't seem to solve. I've quite a complicated bit of code going on, but I've simplified it and the problem still exists.
See the following:
<?php
$meta = ...
0
votes
5answers
589 views
array of char assignment does not work
I am trying to change the value of my char array[10] within a switch statement such that, if we have case 1, my char array[10]="january", or if we have case 2, then array[10]="february" and so on. The ...
1
vote
3answers
213 views
Create / add up array with switch statements
For readability and perfomance reasons, I'd like to build up an array with a switch statement instead of if-statements.
Consider the following if-statement:
$size = 2;
$array = array();
if($size ...
-3
votes
2answers
544 views
Can you use an array for a Switch(case)?
I've started a Uni course and I can't get me head around how to use my array for a switch case. Basically I just need the help with the switch-case, then I can get on with my work.
Heres what it looks ...
0
votes
4answers
87 views
How to use an array in case?
How can I use an array in the case of a switch? This doesn't work and always take the default (3):
switch ($my_array) {
case array('george','paul'):
$id = 1;
...
0
votes
4answers
62 views
How to check for one and only value?
I have an switch with a random variable name and a array which can contain the values left, right, up and down.
For example:
switch ($i) {
case 0:
$name='something1';
...
4
votes
7answers
2k views
C/C++ switch case on char arrays
I have several data structures, each having a field of 4 bytes.
Since 4 bytes equal 1 int on my platform, I want to use them in case labels:
switch (* ((int*) &structure->id)) {
case (* ...
10
votes
2answers
1k views
In PHP what's faster, big Switch statement, or Array key lookup
In PHP what's faster, making a large switch statement, or setting up an array and looking up the key?
Now before you answer, I am well aware that for pure lookups the array is faster. But, this is ...
0
votes
2answers
536 views
Converting an array to a switch statement
What's the fastest solution to convert a array into a switch statement?
var myArr = [x,y]
case x:
console.log("ok > x")
break;
case y:
console.log("ok > y")
break;
3
votes
3answers
277 views
Search in array or switch? For a cipher by substitution
I'm coding a classical cipher by substitution in C++, using all the printable characters in ASCII, and I'm wondering which is faster? A search in an array (edit: a non associative one, just something ...
0
votes
3answers
140 views
Randomly displaying strings
I made a pool of about 20 strings that each display different sayings. I want one of those sayings to display to a text view on random.
I cast an integer as a random 1-20,
int randomNumber5 = (int) ...
8
votes
9answers
1k views
using strings in a switch statement that are in an array or something similiar?
Im trying to find a solution for this problem. This is my example code:
class Program
{
private string Command;
private static string[] Commands = { "ComandOne", "CommandTwo", "CommandThree", ...
2
votes
1answer
1k views
Making a switch to work against items in an array
I'm using authorize.net AIM, the sample code they provide prints an ordered list of the response values. Rather than print out an ordered list to the screen where the customer would see all this ...
3
votes
4answers
1k views
C++ Switch Statement Case Error
I'm programming a simple text-based RPG using a switch statement for a game loop. The program works fine until I attempt to add another case statement, at which point it gives me the following three ...
4
votes
1answer
2k views
How to use array value for case switching (not array number)
How do you use the VALUE of an array number as opposed to what number in the array it is for determining case? In my code:
for (int x = 0; x < 3; x++)
{
switch (position[x])
...
6
votes
8answers
4k views
Using elements of a constant array as cases in a switch statement
I'm attempting to map a set of key presses to a set of commands. Because I process the commands from several places, I'd like to set up a layer of abstraction between the keys and the commands so ...

