A number is a mathematical object used to count and measure.
0
votes
0answers
4 views
iPhone Random Number Apend URL
I'm currently using a hosted .plist file to propagate values within my application. As i would like to change these at a later date i host these online in a .plist.
However the application is caching ...
0
votes
0answers
2 views
Serial Number Activation
I've made an serial number activation program which tries to find a .txt which will contain the serial that the user will type in the "serialnumber" textbox. My program as soon as the user presses the ...
0
votes
1answer
20 views
If “aaa=1”, “aab=2”, to max “zzz=??”, how to convert string value to number?
I've googled all the combinations I can, but haven't found an answer to this one, nor can I find it in any "related" StackOverflow Q&A's. In this sequence:
aaa = 1
aab = 2
aac = 3
aad = 4
aae = 5
...
0
votes
0answers
10 views
Serial Number Activation
I've made an serial number activation program which tries to find a .txt which will contain the serial that the user will type in the "serialnumber" textbox. My program as soon as the user presses the ...
0
votes
1answer
15 views
How to traverse a number in JSON?
I've got this output from an API:
{
"user": {
"0": {
"contact": "36",
"user-id": "12233",
"username": "user1",
"date": 1370622179
}
...
-3
votes
1answer
34 views
Php how to count this? [closed]
I have likes variable and dislikes variable, how should I change it to rating from 0 to 5 ?
Example:
0 Likes - 0 Dislikes = 0 Rating
1 Likes - 0 Dislikes = 5 Rating
5 Likes - 5 Dislikes = 2.5 ...
0
votes
0answers
5 views
Documentation for RANDOM(RAND) in gfortran 4.8.0
Contrary to what applies for RANDOM_NUMBER and RAND() (http://gcc.gnu.org/onlinedocs/gfortran/RANDOM_005fNUMBER.html#RANDOM_005fNUMBER), in the gfortran compiler 4.8.0, there is no documentation ...
1
vote
2answers
68 views
Is this possible? Last few digits of sum equal to another number
I have a n-digit number and a list of numbers, from which any number can be used any number of times.
Taking numbers from the list, how do I know that it is possible to generate a sum such that the ...
0
votes
0answers
7 views
How can code use ICU to parse words into a number?
I need to have code parse a unicode string from some locale into a number.
For example, given string("One thousand five hundred sixty four") I would like to get the result int result=1564.
I've ...
0
votes
2answers
15 views
Don't allow numbers like 067 or 045 in textbox. Windows Phone application
I have a problem. I want my textbox to not accept non-existing numbers. I already made so my textbox don't accept decimal. But when i enter for example 0865, i want it to be converted immidietly into ...
-1
votes
0answers
44 views
python summarize numbers in string [closed]
I have a list of integers, say:
lst = [1,2,3,8,11,12,13,16,19,20,24]
I want to use this list to create an output string as:
'The following elements are in lst: 1-3, 8, 11-13, 16, 19, 20, 24.'
...
0
votes
0answers
17 views
Move dial numbers on gauge highchart?
I have a gauge style high chart I am working on, and I cannot for the life of me figure out how to move the numbers on the dial inwards towards the center of the gauge. These are the numbers on the ...
0
votes
1answer
16 views
PHP - Is it possible to hash an array of numbers?
I am currently working on setting up a number hashing system for a client. If I hash the numbers one by one with hash('sha256', $number) I can then insert them into a database and look them up ...
-1
votes
3answers
22 views
Convert scientific notation to decimal - python
Python 2.7.3 (default, Apr 14 2012, 08:58:41) [GCC] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> a=[78.40816326530613, 245068094.16326532]
>>> ...
0
votes
1answer
25 views
Removing values from sum, together with dynamic fields removal
I have an form with dynamic input fields, for insert of numbers, where first input is static and other 5 are dynamically made with script. the last one field is where sum of are numbers are joined.
...