0
votes
3answers
48 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
2answers
31 views
How to number nonconsecutive addenda in LaTeX without disrupting original Theorem numbering?
I am writing a thesis heavy with Definitions, Theorems, Lemmas and the like. I need to give a basic definition of a concept, and then later in the thesis expand on this definition …
0
votes
1answer
30 views
Getting mother board serial number without WMI and without authentication
Is there any way to get mother board serial number without using WMI and without authentication of remote machine.
2
votes
1answer
42 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 mat …
0
votes
4answers
84 views
Explicitly rounding numbers to more than 7 decimal places in C++
Here is my code:
double round( char* strNumber, int decPlace);
int main()
{
int decimal;
char initialNumber[256];
cout << "Enter decimal and number " < …
0
votes
4answers
62 views
How to specify total number of character in C# number formatting?
Is there a way to specify total number of characters when formatting doubles?
Lets say I have 0.00012345678, and I specify total number of characters (7), I want to get 1.23e-4. F …
0
votes
5answers
83 views
Parsing problem, exception
This is my BMI calculator with GUI. It compiles, but if the user enters characters rather than numbers into the fields, the program crashes. What is wrong with my catching of the n …
0
votes
6answers
258 views
Changing the sign of a number in PHP?
Hay Guys, I have quick question.
I have a few floats:
-4.50
+6.25
-8.00
-1.75
How can I change all these to negative floats so they become:
-4.50
-6.25
-8.00
-1.75
Also i ne …
0
votes
3answers
51 views
Mobile Phone no. verification
I am designing a website.I want to validate the mobile no. entered by the user on the registration page, by sending a verification code to his mobile phone. Can anyone give me poin …
-1
votes
2answers
82 views
Regex convert string to valid number, no decimal, sign optional
Removing everything after and including the decimal, and everything non-numerical except the dash if its in is the first character. So far I have this: /[^0-9^-]|[^\.]+$/. Notice H …
1
vote
1answer
326 views
How do I determine the maximum and minimum value for an Oracle NUMBER column?
Is there a simple formula for determining the maximum and minimum values for an Oracle NUMBER column with (p, s)?
1
vote
4answers
53 views
question on changing file descriptor number in c…
Hi all...my question is how would I change the program below so that it takes a file descriptor number on the command line rather than a file name? Any help would be greatly appre …
6
votes
5answers
396 views
Need help generating discrete random numbers from distribution
I searched the site but did not find exactly what I was looking for... I wanted to generate a discrete random number from normal distribution.
For example, if I have a range fro …
3
votes
6answers
857 views
JavaScript string and number conversion
How can I do the following in JavaScript?
Step (1) Concatenate "1", "2", "3" into "123"
Step (2) Convert "123" into 123
Step (3) Add 123 + 100 = 223
Step (4) Covert 223 …
0
votes
1answer
55 views
Finding port number of connected device from Registry editor
hi
can you pls tell me pls is there any win32 api,s are there for getting connected device port number.Now in my appillication i am giving hardcoded value for com port nu …
