Within an imperative programming language, a control flow statement is a statement whose execution results in a choice being made as to which of two or more paths should be followed.
4
votes
5answers
78 views
c# Nested dictionary of different depths
Essentially what I need is the mapping of different int variables to a dictionary. Or at least that's the way that I was thinking of doing it. The easiest way that I can think to do it slash explain ...
13
votes
6answers
142 views
How to implement decision matrix in c#
I need to make a decision based on a rather large set of 8 co-dependent conditions.
| A | B | C | D | E | F | G | H
-----------+---+---+---+---+---+---+---+---
Decision01 | 0 | 1 | - | 1 ...
0
votes
4answers
55 views
Issue with if /elseif /else [closed]
I am creating a whitelist if you will for a user to input data. I am getting stuck on the elseif statements.
This is my code :
public function is_valid_data($data)
{
if(strlen($data > ...
3
votes
4answers
120 views
Which is faster: “null == myObject” or “myObject == null”? [duplicate]
In both Java and .Net, I've heard that using null first if (null == myObject) is more performant than using the object first if (myObject == null). While I think this is probably true, I'm not certain ...
0
votes
2answers
74 views
Is there a language with higher order conditionals?
Sometimes, I have a control structure (if, for, ...), and depending on a condition I either want to use the control structure, or only execute the body. As a simple example, I can do the following in ...
1
vote
3answers
150 views
Can I iterate through a for loop randomly instead of sequentially?
If there is a for loop like
for ( int i = 0; i <= 10; i++ )
{
//block of code
}
What I want to achieve is, after first iteration i value need not to be 1, it can be anything from 1 to 10, i ...
3
votes
1answer
118 views
ruby catch-throw and efficiency
catch in Ruby is meant to jump out of deeply nested code. In Java e.g. it is possible to achieve the same with Java's try-catch meant for handling exceptions, it is however considered poor solution ...
1
vote
2answers
48 views
Setting switch() to not break after a matched case and instead continuing on to all matched cases
I'm really just curious about this, and I don't plan on implementing it, but I do think it would be a cool control structure to use should the appropriate conditions arise.
I have an array of ...
0
votes
2answers
84 views
How to evaluate each value in an array all true and do something in that case in Php?
I need to insert more than one row in a table
foreach($answers as $answer){
$sql =<<<EOD
INSERT INTO answer(`answer`, `question_id`)
VALUES ('$answer', (SELECT `id` FROM question ...
2
votes
2answers
108 views
Does python have a better control structure or other feature to simplify the code?
I'm new to Python and trying to write a validate function in the simple chest game to achieve:
the a piece should move it's full extend (which mean in it's moving
direction like B7:E4, have a ...
0
votes
1answer
45 views
stsClass objects inside array
I var_dumped a variable and got this, how can i show it properly?
Like,
<p> Name: <?php echo $Firstname.' '.$Lastname; ?>
Country: <?php echo $country; ?></p>
...
3
votes
1answer
61 views
What is the meaning of “break 2”?
I always used and seen examples with just "break". What is the meaning of this:
<?php
while ($flavor = "chocolate") {
switch ($flavor) {
case "strawberry";
echo ...
2
votes
5answers
160 views
Multiple foreach vs multiple if inside foreach
Which would be more optimal of the two? I can't test it on my computer, I can't rely on it.
foreach($links as $link){
if($a){
//do something
}
if($b){
//do something
...
6
votes
8answers
7k views
PHP “or” Syntax
I've seen this a lot: $fp = fopen($filepath, "w") or die();
But I can't seem to find any real documentation on this "or" syntax. It's obvious enough what it does, but can I use it anywhere? And must ...
38
votes
5answers
2k views
Is there a way to write these ifs nicer?
I need to write these four ifs in Python. Notice what it does, is changing between four possible states in a loop: 1,0 -> 0,1 -> -1,0 -> 0,-1 and back to first.
if [dx, dy] == [1,0]:
dx, ...
0
votes
1answer
98 views
How can this PHP logic control structure be refactored?
My gut tells me that there is a better, perhaps one-line refactor for the following code:
if (isset($x))
{
if (isset($y))
{
$z = array_merge($x,$y);
}
else
{
$z = ...
1
vote
2answers
489 views
'break' from a switch, then 'continue' in a loop
Is it possible to break from a switch and then continue in a loop?
For example:
$numbers= array(1,2,3,4,5,6,7,8,9,0);
$letters = array('a', 'b', 'c', 'd', 'e', 'f', 'g');
foreach($letters as ...
0
votes
3answers
142 views
PHP cache structure (skip code block if HIT)
Basically, I am implementing own cache system. Ideally, it'll look like this:
$CACHE->start($name);
//CODE
$CACHE->end();
But that is a holy grail that I do not hope to find. Basically, ...
0
votes
2answers
133 views
Defining variables in control structures
According to the standard, what is the difference in behavior between declaring variables in control structures versus declaring variables elsewhere? I can't seem to find any mention of it.
If what ...
1
vote
5answers
932 views
How can I continue a JavaScript if.. else if statement until I receive valid input?
How can I continue prompting a user for a valid response using if... else if statements? My script currently works once, but then breaks:
var enterNum = prompt("Please enter a number between 1 and ...
3
votes
7answers
278 views
break in for loop
Assume you have this code:
function doSomething($array)
{
for($i = 0; $i < sizeof($array); $i++)
{
if ($array[$i] == "ok")
return true;
}
return false;
}
Note that I'm not ...
5
votes
4answers
855 views
Scala: custom control structures with several code blocks
Is it possible to create a custom control structure with several code blocks, in the fashion of before { block1 } then { block2 } finally { block3 }? The question is about the sugar part only - I know ...
41
votes
28answers
7k views
Useful alternative control structures?
Sometimes when I am programming, I find that some particular control structure would be very useful to me, but is not directly available in my programming language. I think my most common desire is ...
-5
votes
3answers
106 views
How to - Go Dynamic with PHP [closed]
I have a form which actions against a php file. Once the form is completed and the data is inserted into the databse, it want it to display "Awesome". Awesome is being displayed but is above the form. ...
4
votes
3answers
669 views
Smalltalk Variadic functions
Does Smalltalk(especially Squeak/Pharo) have some form of variadic functions?
I was just reading about the power of designing your own control statments in smalltalk and while I'm a big fan of ...
3
votes
4answers
587 views
Custom control structures in Scala?
There are a number of times I've run into a simple pattern when programming in Java or C++ for which a custom control structure could reduce the boilerplate within my code. It goes something like:
...
10
votes
5answers
464 views
Strange PHP syntax
I've been working on PHP for some time but today when I saw this it came as new to me:
if(preg_match('/foo.*bar/','foo is a bar')):
echo 'success ';
echo 'foo comes before bar';
...
2
votes
1answer
340 views
control structures - common applications
What are the most common applications of each control structure. I am trying to get at a reference along the lines of:
Control Structure - common application
Conditions - true / false ...
2
votes
1answer
174 views
PHP Control Structure :Declare()
I'm having a hard time understanding the PHP control structure declare() and where/how it would be used.
http://us.php.net/manual/en/control-structures.declare.php
I was hoping someone could ...
2
votes
2answers
953 views
Lookup table in Latex
I have a bunch of automatically generated LaTeX code with hypertargets of the form "functionname_2093840289fad1337", i.e the name of a function with a hash appended. I would like to refer to those ...
1
vote
10answers
881 views
Correct order for control structure logic (true/false, false/true)?
I am new to programming, and am wondering if there is a correct way to order your control structure logic.
It seems more natural to check for the most likely case first, but I have the feeling that ...
17
votes
13answers
2k views
Does the last element in a loop deserve a separate treatment?
When reviewing, I sometimes encounter this kind of loop:
i = begin
while ( i != end ) {
// ... do stuff
if ( i == end-1 (the one-but-last element) ) {
... do other stuff
}
...
