Tagged Questions
-2
votes
7answers
99 views
C# How to check how many numbers an Integer contains and the separate them [closed]
I want to know how I can see how many numbers an integer contains
Example:
I have an int : 1234
Now I want these numbers back but then separated into 4 Integers
1000
200
30
4
How do I do ...
1
vote
1answer
55 views
How to convert Java JSpinner number to int ?
In Java, I've been trying to cast a JSpinner number input to an integer using Netbeans. I've made it so that the JSpinner input is a number, but I can't try to cast it to my own integer without ...
-1
votes
1answer
30 views
array of an even number of integers and pair [duplicate]
I want to make an array of an even number of integers to be given given as pairs in the order
and to be like this:
height_1, IQ_1, height_2, IQ_2, etc.
The input will be like this:
...
0
votes
1answer
71 views
How to convert integer to its ordinal name?
I don't know if I'm asking too much, but. Is there a way to convert a number to its ordinal name in English? For example:
5 --> 'five'
251 --> 'two hundred fifty one'
2549 --> 'two thousand ...
1
vote
6answers
72 views
Convert integer into X characters string in PHP
I have an integer that I need to convert into a 4 digits string. I know the integer number is between 1 and 9999. If the number is 4, I want the output string to be "0004". If the number is 134, I ...
0
votes
2answers
87 views
Generating random integer values within a range in C [duplicate]
How do I go about generating random integer values between a range (in this case 1-12 including 1 and 12) in the C language?
I've read about seeding (srand()) and using rand() within a range but am ...
-9
votes
1answer
63 views
Generate a Binary File [closed]
I need to generate Binary numbers (Single Bit: ONLY 0 or 1 as Binary and NOT integers) and write them to a file
I repeat again, I need them BINARY. this means I don't want to convert an integer to ...
1
vote
2answers
62 views
Casting a real number to Comparable in java?
Let´s say I have a method that inserts a number into a Binary Tree
public BinaryNode insert(Comparable x, BinaryNode t) {
//Logic here
}
BinaryTree t = new BinaryTree();
How would I cast a ...
2
votes
2answers
65 views
Why does R regard large number as EVEN
From "http://cran.r-project.org/doc/FAQ/R-FAQ.html#Why-doesn_0027t-R-think-the" 7.31
We already know that large number (over 2^53) can make an error in modular operation.
However, I cannot ...
0
votes
2answers
102 views
How to check if float is a whole number?
There is some kind of function for the printf function in which you can use %g, which will show the whole number 3 if the float is 3.00 and will show 3.01 if it's actually a float, is there any way ...
1
vote
1answer
147 views
Input validation of an Integer using atoi()
#include "stdafx.h"
#include <stdlib.h>
void main()
{
char buffer[20];
int num;
printf("Please enter a number\n");
fgets(buffer, 20, stdin);
num = atoi(buffer);
if(num ...
2
votes
1answer
32 views
JESS -> How to check the type of a variable and test it?
I have a assignment in JESS (Java Expert System Shell) and I'm having some trouble with it.
I'm trying to check if a certain variable (read from the keyboard) is a positive integer (I have already ...
0
votes
0answers
25 views
occurrence of each integer in an array
Hello Iam trying to count the occurrence of each integer in the user input the program should stop if the
user input (0). till now i get wrong result, so any one can help me?
int A[50];
int ...
3
votes
6answers
93 views
Java : large integer numbers error
I am trying to do the following math equation in Java:
(44334*(220*220))+ (81744*220) + 39416)
When I enter the same equation in WolframAlpha (or in Google) I get:
2163788696
In java I get ...
0
votes
1answer
49 views
Visual C++ compiler bitwise and numeral format
Reall don't undestand.
In VC++ 9 trying such stuff:
int base = 0010;
Then in debugger I see, that it's equal to 8 in dec. I don't understand...
As I though, that If I explicity use 000 before ...
0
votes
6answers
126 views
C++ - cout prints quotient of two integers as zero
I read in a file with ifstream, and I want to write out with cout how much of the file already read, in percent.
long length = 0, now = 0;
int i = 0;
double d = 0;
file.seekg( 0, std::ios::end );
...
1
vote
4answers
2k views
C++ - Random Number Generator
I have the following method which generates a random number:
int random_number() //Random number generator
{
int x = rand() % 1000000 + 1; //Generate an integer between 1 and 1000000
return ...
16
votes
9answers
648 views
Using inherited overloaded methods
I have two classes:
public class ClassA {
public void method(Number n) {
System.out.println("ClassA: " + n + " " + n.getClass());
}
}
and:
public class ClassB extends ClassA { ...
1
vote
2answers
73 views
Search occurances of numbers in c
I know how to search for strings in C. I use a for loop then a strstr function to determine if there is any occurrences. But now I have int numbers than i want to search for. I did find couple of ...
1
vote
6answers
150 views
Computing Area of the Window - Error in Formula
I am having a bit of a problem with my program. Basically, I have to create a program that finds the area of a window (e.g. a glass window). The formula is Area = Height * Width and so that is what I ...
6
votes
3answers
83 views
Why test for these numbers (2^16, 2^31 …)
Going through Elisabeth Hendrickson's test heuristics cheatsheet , I see the following recommendations :
Numbers : 32768 (2^15) 32769 (2^15+ 1) 65536 (2^16) 65537 (2^16 +1) 2147483648 (2^31) ...
2
votes
4answers
193 views
Scheduling: Partition a set of integers into K subsets
I'm working on a task scheduler and faced the following problem (distribution of tasks among processors):
There is a set of N integers. How to partition them into K disjoint subsets that have small ...
-6
votes
2answers
121 views
How can I do this array in Ansi C? [closed]
Im trying to do this array in ansi C;
the user entry is a Integer (int) X and based in that integer i want to do this array, is a serie of consecutive numbers, but just one number for index, for ...
6
votes
4answers
138 views
Why does AtomicInteger implements Serializable
Accoriding to javadoc,
public class AtomicInteger extends Number implements java.io.Serializable {
// code for class
}
But,
public abstract class Number implements java.io.Serializable {
//code ...
3
votes
4answers
165 views
How to convert an array into a number in PHP?
I want to convert an array in one large number in PHP.
For example, I have an array $array:
$array[0] = 10;
$array[1] = 20;
$array[2] = 30;
$array[3] = 40;
I want this to be:
$one_large_number = ...
2
votes
2answers
334 views
Order Number in Sharepoint. Integer?
I add a list column that should be used as a order column programaticly. As a field type I would use SPFieldType.Integer.
Now I just wonder why this field type cannot be chosen from the user. Are ...
1
vote
3answers
2k views
check if Integer is Null or numeric in groovy?
I have a service method and have to throw an error if method parameter is null/blank or not numeric.
Caller is sending an Integer value but in called method how to check if it is numeric or null.
...
2
votes
3answers
106 views
How can I resolve these problems with numbers?
I still have troubles with numbers in Vim:
p.e.
let a = 1.02 | let b = '10000000' | let total = a*b | echo total --> 1.02e7
I would like to avoid Exponentials.
How can I have the output ...
2
votes
3answers
94 views
Integer Errors in Python
So I made a very simple program that counts down from 99 (sings 99 bottles of beer) but I keep getting 1 of 2 errors
#!/usr/bin/env python
print("This program sings the song 99 bottles of beer on the ...
2
votes
3answers
3k views
PHP subtract array values
I have an array with keys and values. Each value is an integer. I have an other array with the same keys. How can I subtract all of the values for the matching keys? Also there might be keys that do ...
4
votes
2answers
241 views
Finding the first number larger than N that is a relative prime to M
Basically, the title says everything. The numbers are not too big (the maximum for N is ~2/3 * max(long) and max M is max(long)), so I think even a simple solution that I currently have is sufficient. ...
9
votes
3answers
223 views
How does x|0 floor the number in JavaScript?
In the accepted answer on my earlier question
( What is the fastest way to generate a random integer in javascript? ), I was wondering how a number loses its decimals via the symbol |
.
For example:
...
2
votes
5answers
1k views
Random number generator - variable length
Currently my program (see below) generates random strings (made of numbers) from 8 - 12 characters in length.
public static string GenerateNewCode(int CodeLength)
{
string newCode = String.Empty;
...
0
votes
2answers
56 views
Android: How to get the value like 04 instead of the 4 during parsing string to Integer?
I am storing the String value to the integer.
String a="04";
int aInt = Integer.parseInt(a) ;
but then I get 4 instead of the 04.
So what should i have to do for it ?
Thanks.
0
votes
3answers
180 views
C++: a scalable number class - bitset<1>* or unsigned char*
I'm planning on creating a number class. The purpose is to hold any amount of numbers without worrying about getting too much (like with int, or long). But at the same time not USING too much. For ...
0
votes
1answer
107 views
Wrong R data type or bad data?
I'm having trouble doing simple functions on a data frame and am unsure whether it's the data type of the column, or bad data in the data frame.
I exported a SQL query into a CSV file, then loaded ...
0
votes
1answer
300 views
how to get opposite of number in C#?
I'm not sure what the name is for the operation I am attempting, but I would like to "flip" the value of a number within a given range.
I have a C# program that receives a number that varies from any ...
4
votes
4answers
110 views
How to get list of decimal numbers “hidden” in binary number in PHP?
firstly, I very much apologize for my poorly written title of this question. So please someone with native English, change the title appropriately. My question is rather simple, it follows:
I am ...
4
votes
2answers
240 views
Why is there no unsized Integer type? [closed]
Why does the STL not contain an unbounded integer data type?
I feel like it's a data type whose purpose is similar to that of a string.
Programmers would not have to worry about overflowing values ...
-3
votes
4answers
208 views
Smallest Integer Greater than Very Large Number
I am trying to find the smallest integer greater than a very large number (for example, exp(5000000)). How would I go about doing this? If not programmatically (because this evaluates to infinity or ...
2
votes
2answers
730 views
MongoDB's NumberLong only 54 bit signed?
Is a MongoDB's NumberLong really 64 bit signed integer really 64 bit?
MongoDB's NumberLong is said to be a 64 bit signed integer, which should mean we can play with -2^63 <= x <= 2^63-1, where ...
0
votes
1answer
249 views
How to convert integer to decimal point in PROLOG?
How to convert integer to decimal point in PROLOG?
Example, imagine I assign Integer = 10
How do I change integer's value to turn to 1.0 (1 decimal point) ?
0
votes
3answers
1k views
vb.net rounding to whole number (easy question)
I have very basic question, I'm really not familiar with vb.net.
I have code like this:
Dim minutes As Integer = (55 / 60)
I want this to return 0 to me, integer 0 (no decimals), but vb.net ...
2
votes
6answers
1k views
Is a credit/debit card number numeric or an integer?
Since a number can also be a decimal this makes me think that a CC number should be an integer. This would make sense as I don't think any credit cards start with 0 and since they all follow the same ...
3
votes
3answers
367 views
String.valueOf(i) vs “” + i or i + “”
I usually use "" + i for convenient. But compare about perfomance myself, I thought String.valueOf(i) will be faster. Is it right? Which one should I use?
UPDATE: I've read your answers, here is what ...
0
votes
6answers
117 views
Handling numbers in C
Couldnt understand how numbers are handled in C. Could anyone point to a good tutorial.
#include<stdio.h>
main()
{
printf("%f",16.0/3.0);
}
This code gave: 5.333333
But
...
0
votes
1answer
830 views
Is there a way to improve this ANTLR 3 Grammar for positive and negative integer and decimal numbers?
Is there a way to express this in a less repeative fashion with the optional positive and negative signs?
What I am trying to accomplish is how to express optionally provide positive + ( default ) ...
3
votes
2answers
3k views
jquery .not(“:contains('<<any number>>')”)
What is the best way to select an element that does not contain a number?
eg
$('div').not(":contains('1')").not(":contains('2')").not(":contains('3')")...;
Sorry chad I have worded my example ...
1
vote
2answers
2k views
How can I use JavaScript to limit a number between a min/max value?
I want to limit a number between two values, I know that in PHP you can do this:
$number = min(max(intval($number), 1), 20);
// this will make $number 1 if it's lower than 1, and 20 if it's higher ...
2
votes
6answers
1k views
Converting number abbreviations (5.2k, 1.7m, etc) into valid integers with PHP
I have a database with a column containing a variety of numbers written in "shorthand", for example:
5k for 5,000
86.6k for 86,600
4.1m for 4,100,000
1.2b for 1,200,000,000
I'd like to do some ...

