|
- What is the shortest way to write the number $1234567890$?
Here's a challenge : find the shortest way to write the number $1234567890$ There is several ways to write the number $1234567890$ : $1 23456789 × 10^9$ $2×3^2×5×3607×3803$ $617283945×2$ But all
- Are there infinitely many primes of the form
Related to this question, What is the smallest prime number made of sequential number? are there infinitely many primes of the following form (OEIS A057137)? $1, 12, 123, 1234, 12345, 123456, 12
- How do I reorder decimal characters to little endian?
If I read a value like 12345678901234 from a textBox in C#, how can I reorder it to 34129078563412? There aren't any spaces and the text box will always only have 14 characters
- Decomposing a string with parenthesis using regex
I have a problem with decomposing a string The problem: I want to decompose string like this: (01)12345678901234(11)060606(17)121212(21)1321asdfght(10)aaabbb and return an object like this:
- Numeric vs Real Datypes for Storing Monetary Values
An answer to a question about a good schema for stock data recommended this schema: Symbol - char 6 Date - date Time - time Open - decimal 18, 4 High - decimal 18, 4 Low - decimal 18, 4
- ASP. net TextBox Regular Expression Needed to include 2 Decimal Places
Good Evening All, I have a textbox that needs to accept 14 digits plus 2 decimal places Examples include: 12345678901234 12345678901234 94 75 To this end, I have the following code: <asp:
- VB. NET - Converting a string to double and back - Stack Overflow
I am storing a value (represented as a string originally) like this - 12345678901234 12345678912 - in a double variable After storing, it is represented in an exponential format (with an e)
- How to give regular expression for Regex. ismatch function?
I am trying to write a regular expression for accepting a Number of length upto 14 and if they keep the decimal point then it should accept only 2 numbers after the decimal point I have tried it
|
|
|