A statement is the smallest standalone element of an imperative programming language. A program written in such a language is formed by a sequence of one or more statements. A statement will have internal components (e.g., expressions).

learn more… | top users | synonyms

0
votes
1answer
16 views

in/contains statement lists in lists in javascript

There are many ways to check if a value is in an array in Javascript. One could extend the Array prototype or one could make use of the in statement. Array.prototype.contains = function(obj) { ...
0
votes
0answers
34 views

SQL exception before Start (with .next())

I'm having some bad trouble related to a resulset. I have one statement, resulset, ... with the very same structure and it works but this one doesn't. I've seen some people with similar problems but ...
1
vote
3answers
36 views

How to script a REPLACE statement in SQL 2012?

First of all let me say that I'm an absolute rookie in SQL and scripting, so please talk to me as to a little child. ;) I have a huge number of databases that contain tables in which I have to ...
0
votes
4answers
75 views

C# false if statement being used

SOLVED: the code was excecuted via events every 10 ms, increasing the time it takes between events solved the issue. I´m experiencing an odd IndexOutOfRangeException which shouldn´t be happening. ...
0
votes
1answer
33 views

regarding locking up file access in Gfortran

In Intel FORTRAN I could simply write share ='denyrw' in the open statement to prevent a file from multiaccess. However in GNU FORTRAN the statement seemed not working. What is the correct syntax to ...
2
votes
2answers
67 views

Is a function call an expression in python?

According to this answer, a function call is a statement, but in the course I'm following in Coursera they say a function call is an expression. So this is my guess: a function call does something, ...
1
vote
2answers
41 views

PrepareStatement JDBC in java

Are PrepareStatement only usable with values? Example: Could I use something like con.prepareStatement(SELECT ? FROM ? WHERE name =?) Or ? is used only for values, thus within the clause WHEWRE ...
0
votes
2answers
37 views

How do I reverse this JavaScript code?

I have a webpage that has a link set to change the background colour of the page, the colour of the link, & the link text. Here is my code: <html> <head> ...
0
votes
1answer
27 views

Python, insert a case statement into a sql query

I am having a problem on using the CASE statement multiple times in a sql query in PYTHON. I wonder if I can take away the CASE statement and create a template, and then I can put the template ...
0
votes
3answers
25 views

SQL Server---how to group by a column that is declared in CASE statement in SELECT statement

I am having a problem on group by the column [rating]. When I execute it, it gives "Invalid column name 'rate'". Can anyone help me ? THANKS!! SELECT ...... CASE WHEN level_1 = ...
0
votes
3answers
28 views

How to reuse a case statement in sql

I have a question about reusing the following code in select statement in sql. I wonder if I can declare a variable for this statement CASE WHEN ssr.rating = 'A' OR ssr.rating LIKE 'A[+-]' ...
0
votes
2answers
42 views

executeUpdate(String, int) method in Statement always returns 1

Can anybody tell me why the below method (executeUpdate) is always returning 1 even if I have specified to return the generated key in it? I want to get the generated key in generatedKey variable. It ...
0
votes
2answers
27 views

Optimize mysql query statement

how should I optimize this Query? EXPLAIN EXTENDED SELECT cm . *, u1.Firstname AS u1Firstname, u1.Lastname AS u1Lastname, u2.Firstname AS u2Firstname, u2.Lastname AS u2Lastname, ...
0
votes
1answer
33 views

javascript - can't compare var of type int in conditional statements

I declare global var in script sitting in the head: var numMonsters; then i have somebody setup div with form that call js function also located in the head and there i assigning this var: ...
2
votes
4answers
96 views

Using OR in Python for a yes/no?

I'm wanting to have a "y/n" in Python, which i've successfully done, but I want the user to be able to input a "y" or a "Y" and it accepts both. Here's a short if statement if yn == "y": break ...
-2
votes
5answers
154 views

how to make “i+=x” works as “i++”?

The following code int i=0; while(i<10) { printf("%d\n", i++); } is equivalent to int i=0; while(i<10) { printf("%d\n", i); i++; } But the following code int i=0; while(i<10) { ...
1
vote
2answers
32 views

JavaScript function arguments statements

My problem is: (only as example, must not make sense overall): // make a function and pass part of the statement as argument function ExampleFunction( argument ) { ...
1
vote
2answers
36 views

SQL conditional where statement

I've written the following sql statement, but I'm unsure how to write the where statement because it is conditional. So I have: declare @subject varchar(100) select surname, forename, result from ...
5
votes
1answer
82 views

Why will javac not accept x = x+++++y . (Compiler Theory)

From the perspective of Compiler Theory, why would the javac compiler not accept a statement of the form x = x+++++y but accept x = x+++ ++y ?
0
votes
3answers
27 views

Looping with a while statement while reading a string for an integer

I need help encasing the: if any(c.isdigit() for c in name): print("Not a valid name!") inside of a while statement. This pretty much just reads the input for the "name" variable and sees if ...
0
votes
1answer
25 views

Xcode 4.6 if statement with &&

My problem is -(IBAction)setAction:(id)sender{ if ([labelOne.text isEqual: @"One"] && [labelTwo.text isEqual: @"Two"]) { labelShow.text = @"Yes it works :)"; } } And if ...
13
votes
2answers
130 views

While(false) causes unreachable statement compilation error

I was recently removing a block of code from our code base before a release and used an if(false) statement to prevent execution: if (false) { ArrayList<String> list = new ...
0
votes
1answer
23 views

Avoiding Contingency Table for SQL Geography:Point Distance by Joining two tables

I've got a problem converning a sql statement. I've got two tables cities and persons, which each has got a Point-column. I've already got a working distance function, but now I wanna select all ...
-1
votes
5answers
57 views

Make textbox “ReadOnly” using an if statement in C#?

I was wondering if there was a possible code to do something like this: if (textBox1.Text == "No") { //some code to make textBox2 ReadOnly }
0
votes
6answers
58 views

does order of the conditions matter on if else statement?

On coding bat Logic-2, loneSum problem I typed in the first method listed below. It was right for all of the tests except for only one. The only one it failed on was where all of the variables equaled ...
2
votes
1answer
41 views

Find statements related to a Connection

I am developing on a big application which uses a Connection Pool and has lots of classes using its connections. Recently we had some issues because some classes were not closing the statements before ...
0
votes
1answer
28 views

Trying to output a string variable to a .txt file within an IF statement. - Java

I'm pretty new to java and i still have alot to learn. I'm trying to output the data within a variable to a text file, and I'm not sure why this will not work. Could anyone help me out? if ...
0
votes
0answers
41 views

Yii Framework: avoid use echo statement on views

I'm trying to understand Yii framework and I want to avoid the use of the echo statement to build the view. Now I'm writing the code like this: <?php echo "<table>"; for ($i = 0; $i ...
0
votes
4answers
44 views

Javascript if statement with AND and OR

I'm using a browser plugin for jQuery that retrieves the browser name and version. Anyway I'm trying to display a message if the user is using a certain browser and/or a certain version. Here is what ...
0
votes
2answers
58 views

if statement's not working

Forgive my noobness coding as I teach myself PHP (lol)! The code below works almost perfectly for a form I want to create. Whenever the user hits the submit button, provided the form is all filled in ...
0
votes
1answer
34 views

Tkinter Button with an If statement

this is my first python program, and i think i have the if statement correct, i may or may not, i dont know. What i want to do is, when a Tkinter button is clicked, I want the function which is ...
0
votes
2answers
70 views

How to write this return statement so I don't return null?

I don't know where or how to place my return statement so I get back a linked list. The return of the linked list is in a loop. I need to have a return statement outside that however but can't get tit ...
-1
votes
4answers
36 views

I am getting a not a statement error

I need help figuring out what I am doing wrong. Here is my coding so far. I am trying to plot coordinates on a circle. I get a not a statement error. public class MathClass { public static void ...
0
votes
2answers
25 views

how to continue the loop inside the if else case?

final static int arrayLength = 1000; //maximum array size static float[] productPrice = new float[arrayLength]; //stores the prices of products static String[] productName = new ...
0
votes
4answers
35 views

PHP Looping through entire multidimensional array but only giving one result back

I have got an multidimensional array on which I run a foreach loop. I basically want to see if I've got the country_url stored in an database. If it is in the database then I'll echo "exists" but if ...
0
votes
2answers
20 views

Wordpress is_page function to display alternative logo

I have a wordpress theme where the logo is defined in header.php but I would like to display a different logo if they go to a certain page. The code I am using is below, but it just returns a blank ...
0
votes
1answer
24 views

Conditional IF Statement in Excel, Change Other Cells According to Content

I'm trying to make a revision timetable for myself on Excel. Let's say I'm doing four exams, A to D. Each exam has a certain number of "practice papers" that I have to do. Below is a demonstration ...
-1
votes
1answer
14 views

Need help on how to convert this select to a DELETE statement:

I need help as to how to convert this select to a delete statement. SELECT stud_term_sum_div.id_num, stud_term_sum_div.hrs_enrolled, stud_term_sum_div.transaction_sts, ...
-1
votes
1answer
57 views

Teacher insists to use if statement instead of while statement, while with while statement my code works

I'm having a little problem here. We been told to program some simple things but I can't run the code perfectly with if statement. With while statements, my code works perfectly but teacher insists ...
0
votes
1answer
36 views

How do I set the statement if to read letters instead of numbers?

"if" statement only allows to put numbers in it. Is there a way to make it read letters? I'm only in my fifth lesson of Java (I study in a uni and the teacher is very slow but I want to learn things ...
-1
votes
0answers
27 views

branch loop in mplab using C languange

I am trying to create a branch loop in C but I am facing some difficulties. I have an if statement comparing a variable to a character. If it is not equal to the character I want to go to the ...
1
vote
1answer
47 views

Creating an instance of an object within an if statement

I am trying to create a new instance (of an Expander) and put it inside a StackPanel every time one variable is not equal to another. The problem; however, seems to be that I can't access the ...
0
votes
1answer
48 views

Is it possible to add a popup on application launch depending on the following?

I am creating a C# WPF application and I'm not the best with it to be honest. I'm wondering if it's possible to do the following. When the application launches I want it to automatically check a ...
3
votes
6answers
66 views

How to use user input to end a program?

I'm new to python and I am writing a program that converts Millimeters to Inches. Basically its a continuous loop that allows you to keep putting in numbers and get the correct converted measurement. ...
0
votes
3answers
78 views

if statement not executing in while loop

I have to write a program that gets multiple strings one after the other that is terminated by the sentinel DONE, and then print this list of strings right justified to the length of the biggest ...
2
votes
1answer
31 views

Do the builtin types (c, d, i, f, etc.) have CONVERSION_EXI_* functions? And if so, how to find them?

The WRITE statement has a lot of options, so I was wondering, does it call CONVERSION_EXIT_* functions, or how does it print the primitive data types in so many ways? And if it does use ...
0
votes
1answer
12 views

FormatText Statement Explantion Needed Please

Im trying to make some changes to the way text is formated in a script. Script currently is : <Title FormatText="{0}, {1}, {2}, {3}, {4}"> I cant find an explanation of the "FormatText" ...
0
votes
2answers
43 views

Unreachable statement?

Here is my coding: For some reason, at the very end, when I'm trying to return winscounter and losscounter, it says unreachable statement but not for the tiescounter. I can't figure out why! If anyone ...
-1
votes
1answer
67 views

how can you translate the statement if(isalpha(c)) from C++ to MIPS? [closed]

I am trying to translate the statement if(isalpha(c)), where c is a char variable, from C++ to MIPS assembly. I tried to google it, but I could not find an answer. Does anyone have any idea? Thanks ...
0
votes
3answers
53 views

Can I use two Where in select statement

I'm trying to get a date range and a transaction type in a query. I'm working in PHP with a Mysql database. Originally, the statement was ("select * from accounting WHERE date between ...

1 2 3 4 5 14