Tagged Questions
The digits tag has no wiki summary.
61
votes
16answers
132k views
How to round a number to n decimal places in Java
What I'd like is a method to convert a double to a string which rounds using the half-up method. I.e. if the decimal to be rounded is a 5, it always rounds up the previous number. This is the standard ...
14
votes
12answers
5k views
Efficient way to determine number of digits in an integer
What is a very efficient way of determining how many digits there are in an integer in C++?
10
votes
2answers
622 views
Why `(map digitToInt) . show` is so fast?
Converting non-negative Integer to its list of digits is commonly done like this:
import Data.Char
digits :: Integer -> [Int]
digits = (map digitToInt) . show
I was trying to find a more direct ...
8
votes
5answers
918 views
How do I generate a random n digit integer in Java using the BigInteger class?
I am unsure about how to generate a random n digit integer in Java using the BigInteger class.
7
votes
7answers
737 views
Sort N numbers in digit order
I found out about this question recently.
Given a N number range Eg. [1 to 100], sort the numbers in digit order (i.e) For the numbers 1 to 100, the sorted output wound be
1 10 100 11 12 13 . . . 19 ...
6
votes
6answers
385 views
Counting digits using while loop
I was recently making a program which needed to check the number of digits in a number inputted by the user. As a result I made the following code:
int x;
cout << "Enter a number: ";
cin ...
6
votes
2answers
178 views
Difference in digits10 between GCC and MSVC
I have the following code:
#include <iostream>
#include <limits>
int main()
{
std::cout << std::numeric_limits<unsigned long long>::digits10 << std::endl;
return ...
5
votes
10answers
354 views
Finding the number of digits of an integer
What is the best method to find the number of digits of a positive integer?
I have found this 3 basic methods:
conversion to string
String s = new Integer(t).toString();
int len = s.length();
...
4
votes
3answers
214 views
Counting digit occurrences
This problem is really confusing me; we're given two integers A, B, we want to count occurrences of digits in the range [A, B]. I though that if we could count the number of digit occurrences in the ...
4
votes
6answers
483 views
Fastest way to find the largest power of 10 smaller than x
Is there any fast way to find the largest power of 10 smaller than a given number?
I'm using this algorithm, at the moment, but something inside myself dies anytime I see it:
10**( int( ...
4
votes
7answers
931 views
Array Division - What is the best way to divide two numbers stored in an array?
I have two arrays (dividend, divisor):
dividend[] = {1,2,0,9,8,7,5,6,6};
divisor[] = {9,8};
I need the result (dividend/divisor) as:
quotient[] = {1,2,3,4,5,6,7};
I did this using array ...
4
votes
7answers
336 views
PHP Leftmost digit
let's say I have a variable containing an integer or a float (since integers might overflow into a float in PHP).
I want to run some operation to get the leftmost digit and the rest of the remaining ...
4
votes
2answers
8k views
Controlling digits in R
There is an option in R to get control over digit display. For example:
options(digits=10)
is supposed to give the calculation results in 10 digits till the end of R session. In the help file of R, ...
4
votes
14answers
488 views
What programming language will enable me to enter a very long number without converting it to floating point?
What would be the best way to do the following.
Enter a very long number, lets say 500,000 digits long without it going into scientific notation; and then am able to do math with it, like +2 etc.?
...
3
votes
1answer
92 views
why does guid have special formats? [closed]
Possible Duplicate:
Why is the GUID structure declared the way it is?
i've been looking a GUID generation and handling and is wondering why Microsoft has decided these "strange" formats.
...
3
votes
4answers
106 views
Show more digits in PHP
Let's say I have:
echo 1/3;
And it print out only 0.33333333333333, can I get more digits?
3
votes
4answers
45 views
Regular expression matching a number of characters which amount had been parsed before
Say I have a file that contains lines that look like this:
"7sunrIsEfoo"
"10ecological09"
"3bedtime"
Each line starts with numeral(s) that represent number n. I want to match the n characters ...
3
votes
3answers
309 views
Given a double, need to find how many digits in total
I have a double which is not necessarily positive but usually. It can be 0.xxxx000 or X.xxxx00000 or XX.00000 or 0.xxx0xxx00000, where eventually there are all 0's to the right of the last number. I ...
3
votes
2answers
381 views
How can you get the number of digits contained in a double?
I'm trying to get the number of digits in the following double value: 56.46855976 without using converting it to a string (and simply replacing the "." with a "").
Anybody got any ideas?
Cheers
3
votes
5answers
520 views
How can I safely and quickly extract digits from an int?
We currently have some code to extract digits from an int, but I need to convert this to a platform without snprintf, and I am afraid of a buffer overrun. I have started to write my own portable (and ...
3
votes
6answers
604 views
Inserting spaces between digits in C
How would I go about taking a number like 123456 and having it print as 1 2 3 4 5 6?
3
votes
4answers
2k views
Identify the digits in a given number.
i'm new to programming.. and i'm stuck at a problem.. I want my program to identify the separate digits in a given number, like if i input 4692, it should identify the digits and print 4 6 9 2. And ...
2
votes
1answer
71 views
Scala BigDecimal how to display more decimals?
First of all, I am aware that there is a similar topic regarding the division of 1 by 3. However, my code is quite different and I don't know how to apply the information given there to my situation. ...
2
votes
3answers
114 views
How to separate digits from a number in C++?
I'm trying to find a way to get 5 digits separately from a whole number.
cin >> option; // Option to enter a number(don't worry about this)
if (option == 1) // The option(don't worry)
{
...
2
votes
3answers
188 views
Problem on getting digits in a double variable
I got a little problem with a function I need in my java progam. I want to check the total amount of digits, a 'double' variable has. (e.g.: 5 should return 1, 5.0034 should return 5, and 2.04 should ...
2
votes
2answers
174 views
Perl: replace consecutive digits with their count
My first questions here.
I have a string of digits like 55111233
as you can see 5 is consecutive twice, 1 thrice 2 once and 3 twice.
I want it to be replaced into 52132132
in general ...
2
votes
6answers
511 views
Regular expression for 1-50 without decimal point
I am looking for a regular expression that will match any number from 1 to 50 inclusive. So far, I have found examples but they all allow the string to contain a decimal point, which I do not want to ...
2
votes
2answers
480 views
Given a number series, finding the Check Digit Algorithm…?
Suppose I have a series of index numbers that consists of a check digit. If I have a fair enough sample (Say 250 sample index numbers), do I have a way to extract the algorithm that has been used to ...
2
votes
2answers
2k views
Ruby: counting digits in a float number
Is there any worthy Ruby method to count the number of digits in a float? Also, how do I specify the precise when to_s float numbers?
2
votes
3answers
1k views
Extracting individual digits from a float
I have been banging my head on this one all day. The C++ project I am currently working on has a requirement to display an editable value. The currently selected digit displays the incremented value ...
1
vote
5answers
65 views
How would I count the number of digits to the right of the decimal in a floating point column?
I have table with Latitudes and Longitudes that are stored as floating points. How would I count the number of digits to the right of the decimal in the Latitude column? The data would look ...
1
vote
1answer
47 views
Grabbing the digits of a number without using division or modulus
I am trying to implement a 7-segment counter using VHDL.
The counter starts from 0 and increments an integer value to a max of 9999.
The value is passed to a bloc that is supposed to "split" the ...
1
vote
2answers
96 views
Show a leading zero if a number is less than 10 [closed]
Possible Duplicate:
JavaScript equivalent to printf/string.format
How can I create a Zerofilled value using JavaScript?
I have a number in a variable:
var number = 5;
I need that ...
1
vote
6answers
151 views
Python: Define a function using a variable?
I am trying to define a function that will include a variable n where n will be a string of numbers e.g. "3884892993", the definition of the function starts as is_true(n), however if n is going to be ...
1
vote
1answer
90 views
How to implement 128-bit linear feedback shift register with byte element array in C
I have an array as follows,
unsigned char A[16]
I am using this array to represent a 128-bit hardware register. Now I want to implement a linear feedback shift register (LFSR, Fibonacci ...
1
vote
2answers
66 views
Regex to extract digits and dots from a string
I'm using the following code to extract the version number from a string. The version number is the first match made only by digits and dots. For example in the string: "GT-I9000M-user 2.25.31 FROYO ...
1
vote
5answers
58 views
Limiting Number of Digits in PHP
I'm displaying how large a list of files are in a table using PHP. I'd like to display how big they are in megabytes instead of the default bytes. The problem I'm having is that I get extremely long ...
1
vote
2answers
34 views
do I have to specify integer length when creating an id field in MySQL through phpMyAdmin?
I saw someone not set the length in a tutorial but it was specifically for counting the total number of users and just set to auto-increment. I've been of the habit of always specifying a length ...
1
vote
3answers
124 views
Exactly 4 digits validation in perl
I have a validation check when I pass the command line parameters to the perl program.I pass two years first passed argument should be lesser than the second passed argument and both the arguments ...
1
vote
7answers
863 views
Fastest way to sum digits in a number
Given a large number, e.g. 9223372036854775807 (Int64.MaxValue), what is the quickest way to sum the digits?
Currently I am ToStringing and reparsing each char into an int:
num.ToString().Sum(c ...
1
vote
2answers
435 views
Objective C- How to add digits in a number?
How do I add the digits in a particular number for example if the number is 3234 the result should be 3+2+3+4 = 12?
1
vote
1answer
221 views
MySQL:set result two digits behind comma
i have some formula:
CONCAT((SUM(X.lot_qty)-SUM(X.reject))/SUM(X.accept)*100,'%') AS Acceptance
but i get result like:
100.0000%
how to get result as 100.00%?
1
vote
8answers
2k views
c ++ digits after decimal point
I have a float number for example 12.12123
Is there a function which would display only number with 2 digits after decimal point
12.12 ?
Here is the code:
y1 = ( c1 - (a1 * x)) / b1;
y2 = ( c2 - a2 ...
1
vote
1answer
147 views
strange unwanted three digit code printouts from caesar cipher
hi all I'm having problems with my code.
the cipher actually works its just I get some odd three digit codes separated with slashes
any help would be greatly appreciated heres my code
the codes look ...
1
vote
2answers
130 views
Recognize the 2 key from the keyboard or from the numpad
I would like to add keyboard short-cuts to my web application.
But for one of them, I need to be able to distinguish between the digits entered with the numpad from the one entered above the qwerty ...
1
vote
3answers
692 views
Code Golf: ASCII Art number [closed]
Possible Duplicate:
Code Golf - Banner Generation
Post your shortest code to convert a number into a ASCII art digits.
Input - Assume that an integer variable called z has already been set ...
1
vote
3answers
618 views
Prolog: find all numbers of unique digits that can be formed from a list of digits
The best thing I could come up with so far is this function:
numberFromList([X], X) :-
digit(X), !.
numberFromList(List, N) :-
member(X, List),
delete(List, X, LX),
...
1
vote
2answers
743 views
Python - Number of Significant Digits in results of division
Newbie here. I have the following code:
myADC = 128
maxVoltage = 5.0
maxADC = 255.0
VoltsPerADC = maxVoltage/maxADC
myVolts = myADC * VoltsPerADC
print "myADC = {0: >3}".format(myADC)
print ...
1
vote
4answers
392 views
Sorting digits in a string alphabetically
We have a list of titles, some of which start with numbers (e.g. 5 Ways to Make Widgets). We would like to sort this as if it were "Five Ways..." without changing the title. We know that some movie ...
1
vote
5answers
2k views
Check if string contains only digits
I want to check if a string contains only digits. I used this:
var isANumber = isNaN(theValue) === false;
if (isANumber){
..
}
.. but realized that it also allows + and -. Basically I wanna ...