Tagged Questions

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 ...
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
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
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) { ...
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
3answers
619 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
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 ...
0
votes
3answers
69 views

Divide number into digits and save them in list (array) using python

I want to divide number into digits and save them in list (or array) in python. So firstly I should create list like dig = [0 for i in range(10)] and then i = 0 while num > 9: dig[i] = num ...
0
votes
3answers
401 views

in python how do I convert a single digit number into a double digits string?

So say i have a = 5 i want to print it as a string '05'
0
votes
5answers
946 views

Extract first two digits of hex (UInt32 *) and convert to int

I have a bunch of hex values stored as UInt32* 2009-08-25 17:09:25.597 Particle[1211:20b] 68000000 2009-08-25 17:09:25.598 Particle[1211:20b] A9000000 2009-08-25 17:09:25.598 Particle[1211:20b] ...