-2
votes
0answers
12 views

Adding numbers to a variable [closed]

Im not sure how to explain this but this is what I am looking for. If I create a while loop like this: while(count <= Max){ ++count; ++number; and I want to have a variable ...
0
votes
3answers
24 views

Little NumPad in tkinter

I'm trying to build a little num pad using tkinter, to be able to enter a password code on a pure touchsystem. This is what I have so far: import tkinter from tkinter import ttk def main(): root ...
1
vote
6answers
92 views

why variable can not start with a number

i am working in php, i have to define variables in sequence to save in mysql..both field name and variable name must be same in my case. Can i declare a variable like this $1 OR $2 etc If not why ...
0
votes
3answers
417 views

Python variable increment while-loop

I'm trying to make the variable number increase if user guessed the right number! And continue increase the increased one if it is guessed by another user. But it's seem my syntax is wrong. So i ...
4
votes
2answers
80 views

“e” in a bunch of numbers [duplicate]

Possible Duplicate: What number is e+000 Found 2.4397e6 in Enum tutorial Result from printing that: 2439700.0, what does the e mean? I don't think it's primitive data type though.
0
votes
0answers
106 views

How does Visual Basic handle large numbers? [closed]

I've just started learning VB and I made a basic calculator app where the user inputs two values and can then click a button (add, subtract, multiply, divide). Basic stuff. I wanted to see how VB ...
0
votes
1answer
49 views

Grabbing text data from html to a variable

JSFiddle : http://jsfiddle.net/veksen/Wa4pA/4 what seems to be valid code in my eyes doesn't work. I used a similar method earlier in the code and it worked fine, now my variable isn't affected. I'm ...
-1
votes
2answers
64 views

Find ratio for any number of variables in php?

I want to find ratio for any number of variables in php. For example: 1:2 10:100:50 30:90:120:150 How can I get such rations?
1
vote
2answers
69 views

PHP. Catching only numbers from a string

If I have a string like $var = "adf91uaj19jj99877ad009"; Which is the easiest way to get all integers from this variable and create a new one? At this case $newVar= "911999877009";
0
votes
1answer
101 views

Is it possible to call the sqlite3_limit() function from SQL

From Python, I want to reduce the value of SQLITE_LIMIT_VARIABLE_NUMBER from its compiled-in value to a much lower value, for testing purposes. In practice, I sometimes need to specify many more ...
-1
votes
3answers
503 views

Using any in re.findall - Python

I wrote a script in python to tell which numbers in new were in the first 10 numbers in new. I know it looks more complicated than it has too and that has to do with what I'm trying to do with the ...
-1
votes
6answers
101 views

javascript generate a number of a variable length [duplicate]

Possible Duplicate: Generating random numbers in Javascript in a specific range? If I input a length of say 4, I need to get back a number between 0 9999. And I want it to be 0 padded ...
0
votes
1answer
36 views

Getting variable for X

>> Fiddle << So, this fiddle works as it should: when two radio's with a different name attribute are checked, text is shown which echoes the values of these buttons. However, what if there ...
1
vote
2answers
106 views

How to define “n” as any natural cardinal number variable

So I have always wanted to do something like this, but never knew how to use an undefined natural variable (e.g. 1, 2, 3, 4, 5 ...) I want something like this: if($("#container").width() == 400*n) ...
1
vote
3answers
147 views

Passing numeric variable in jQuery

Why can't I pass the num variable to this function like so: function getColumnData(num) { var colVals = $('#newtable td:nth-child(num)').map(function(){ return $(this).text(); ...
1
vote
1answer
58 views

What can be the error in this float calculation?

I always have a lot of troubles with variables: float, string and numbers. Can anyone tell me why this doesn't work? What did I wrong? let beforeE = '2.18' let nrzeros = '000' let newnr = ...
0
votes
1answer
594 views

C++ How do I pass a system serial number into a variable?

I've been able to retrieve my system serial number, but how do I pass the serial number itself into a variable? int main() { char newSerial; int (*ptr) (const char[]); ...
1
vote
3answers
173 views

Is there a number wilcard in MySQL?

I want to select titles that have a number after a certain character. Example: SELECT * FROM table WHERE title LIKE '%- H(any number)' How would I select any number in this statement 1-10000000 if ...
0
votes
1answer
204 views

drawing random number from a standard normal distribution using the standard rand() functions

So most programming languages contain a rand() functionality whereby you can generate a random number between 0 to 1.... My question is, is there a way to manipulate this standard rand() ...
0
votes
3answers
102 views

How the numbers(0-9) are prevented from using as variables in JAVA?

In JAVA(and in every programming language ever invented), we can not use numbers as variables. So, I was wondering how the 'Java language' developers achieved this. As I see, the only way to achieve ...
1
vote
6answers
118 views

adding numbers from array?

i have: var str="100px"; var number = str.split("px"); number = number[0]; var km = "100px"; var numberk = km.split("px"); numberk = numberk[0]; var gim = numberk+100; var kim = number+100; var fim ...
0
votes
4answers
96 views

Number definitions using math calculations in PHP

I noticed that many developers use Math operations as variable values, like: $time = 60 * 60 * 24 * 7; // 7 days instead of just assigning the computed value $time = 604800; I know it makes the ...
0
votes
3answers
90 views

Variables craziness, rounding number (int,double etc.)

This is mine code, not fully finished, and sorry for Polish language but it's easy to get it. http://pastebin.com/QPmVaPFv So, this is about vet, 4 variables are for price per visitor: 1. Big dog 2. ...
2
votes
3answers
1k views

1: command not found

I'm writing a divides-by-three function in Bash, and it won't let me set a variable to a number. fizzy.sh: #!/usr/bin/env sh div3() { return `$1 % 3 -eq 0` } d=div3 1 echo $d Example: $ ...
11
votes
5answers
17k views

php test if number is odd or even

What is the simplest most basic way to find out if a number/variable is odd or even in PHP? Is it something to do with mod? I've tried a few scripts but.. google isn't delivering at the moment.
0
votes
2answers
128 views

Why is my Float Variable Holding Whole Numbers?

I've been glancing at this code for a while now, and I can't seem to figure out what the probably simple error is... In short, I have a float variable in Java that seems to only be storing the integer ...
-1
votes
3answers
157 views

php variables help with a big number [closed]

Hello i need to know if php there is a variable type that doesn't show me something like this: 3.9614081257132E+28 Please anyone knows how to make that?
2
votes
1answer
149 views

creating a new column to indicate variable number of each unique animal

I need to change the format of my current data by creating a new column as "tnum"(first column)to indicate trait/variable numbers and the last column "tval" to indicate each trait value. My current ...
1
vote
3answers
998 views

Python - Ensuring a variable holds a positive number

I am looking for an elegant way to ensure that a given variable remains positive. I have two variables that hold positive float numbers and I decrement them according to certain conditions. At the ...
1
vote
2answers
2k views

Reading numbers from a file to variables (Perl)

I've been trying to write a program to read columns of text-formatted numbers into Perl variables. Basically, I have a file with descriptions and numbers: ref 5.25676 0.526231 6.325135 ...
1
vote
1answer
102 views

Applescript changing variable names between computers

I'm having a very strange problem that may be the result of my ignorance of how Applescript handles variable names. I've written a script that works fine on my computer. It references variables from ...
3
votes
5answers
518 views

Letter after a number, what is it called?

What is this called? double d1 = 0d; decimal d2 = 0L; float d3 = 0f; And where can I find a reference of characters I can use? If I want to cast 0 to short, which letter I need?
4
votes
3answers
2k views

Default php function that turns negative numbers in 0

Is there such a thing? for eg $var = -5; echo thefunction($var); // should be 0 $var = 5; echo thefunction($var); // should be 5
2
votes
4answers
159 views

Variables not working… or i'm missing something?

I am trying to make some edits to a docx file... making a number into letter (i.e. if the variable is equal to 01 = 'one', equal to 02 = 'two', and so on, but in Spanish). The problem is that the ...
0
votes
1answer
616 views

Flash AS2 Auto Scroller

I have this code in AS2: The auto speed of the scroller is: var autoSpeed:Number = 2; I want it to be slower, but when I decrease the number the scrollface doesn't move. How do I fix this. ...
0
votes
4answers
88 views

JavaScript Use Any Number

I'm building a custom lightboxing system (because I don't like how any of the ones out there handle it), and I need a way to detect whether or not a lightbox is already opened. What I'd like to do is ...
1
vote
1answer
391 views

Return variable with the highest value?

I have 3 variables: $num1, $num2, and $num3. Each represent the number of rows a table column has. I want to find which variable has the highest variable, so I can use it in a for loop (shown below) ...
1
vote
3answers
325 views

Java long Numbers Help

So at the top of my code I declared the variable private long counter; And when I try to give it a number that's really long it gives an error, Im trying to do this counter = 1111111111111111; Thats ...
1
vote
3answers
288 views

PHP explode and changing variables

So I am trying to create a next and previous buttons on my website and I thought I approach it in a rather generic way. I named each of my pages like this: 1.php 2.php 3.php and so on So ...
0
votes
2answers
863 views

Help - load numbers from a .txt file to variables (c++)

Program 2 should show 111, 222 and 333 as result for x,y,z. I want to read the text file, line to line, and save one line to one variable like: Line1 = x Line2=y Line3 =z Can someone help me? ...
3
votes
3answers
236 views

is it ok to multiply to one a variable to check if is it really a number in php?

I am doing this to check and already use the variable of type number in php: $myvar = $myvar * 1; with this, I have a number or if $myvar has any other caracter, the result is 0 I wonder if this ...
0
votes
3answers
4k views

How do I decide if a variable is numeric in Perl? [duplicate]

Possible Duplicate: How do I tell if a variable has a numeric value in Perl? I want to decide if a variable (value parsed from a string) is a number or not. How can I do that? Well, I guess ...
2
votes
5answers
11k views

How to concatenate a number to a variable name in MATLAB?

I have a variable a = 1. I want to generate a variable name of the form: variableNumber So in this example, I would want a1 a2 a3 as variables. How can I do that?
2
votes
5answers
5k views

How do you format a 10 digit string into a phone number?

I have database records in the form of 10 character long strings, such as 4085551234. I wish to format these into this format: (408) 555-1234. I think this is regex related. I'm new to programming ...
1
vote
4answers
552 views

Comparing large numbers with javascript [duplicate]

Possible Duplicate: Subtracting long numbers in javascript Can anyone tell me how to compare large numbers in javascript? Something like var sla = 1263293940000; var resp = ...
0
votes
3answers
4k views

PHP: fill an array with numbers

If i have a variable $num = 50 how can i put numbers 1-50 into an array? (50 is an example.. i wont know how many questions)
2
votes
1answer
129 views

Why does this code in VBA Power Point work fine witout Dim commands for numbers?

From one of VBA tutorials I learned that variables contining numbers should be firstly declared as integers: Dim mynumber as integer But, please, look at this code: Sub math() A = 23 B = ...
7
votes
5answers
9k views

Check if variable has a number php

I want to check if a variable has a number in it, I just want to see if there is one I don't care if it has any thing else in it like so: "abc" - false "!./#()" - false "!./#()abc" - false "123" - ...