The int is a data-type that represents a whole number. It only goes up to a certain value, then you must use a long.
-1
votes
2answers
54 views
How to change a variable every iteration of a loop (Java)
How can I have my variables change after every loop. I need the stated arraylist variables to go where the code is marked "HERE".
//variables i need to cycle through
static ArrayList<Integer> ...
0
votes
2answers
54 views
How to change boolean code to int code in java [closed]
I am trying to change some code in my admin panel because of some recent changes in my protocols. What I am trying to do is change the code from boolean to int. I will state now I am a complete novice ...
0
votes
1answer
70 views
Why can't I assign this int a value?
I have a class:
class A
{
public:
A();
~A();
void IncrementNum();
private:
int num;
};
A::A() : num(0)
{
}
A::~A()
{
}
...
0
votes
3answers
35 views
Append int in string to int[]
Let's say there have a string "123124125",
i wish to take out them 3 by 3 from the string and store into int.
eg,
int[0] = 123,
int[1] = 124,
int[2] = 125,
Let below String ciphertext is ...
0
votes
2answers
13 views
MySQL - Comparsion VARCHAR with INT
On my site user registration date stored as timestamp in varchar(20) column. I want to count how many users registered today, i written query:
SELECT COUNT(*) as count FROM `users` WHERE `user_group` ...
0
votes
3answers
24 views
how to create an anonymous int array for the purpose of passing as a parameter
I need to create anonymous int array to be passed to a method. I don't want to declare a variable and then pass the variable because it makes code look crowded.
This is what we can do for Integer ...
1
vote
1answer
49 views
Scanner Skipping Numbers Java
I am writing code to search through a document and find the numbers and put them into an array. Here is a piece of the document:
username Sam movies id 1 Citizen Kane id 2 Vertigo id 3 Rules of ...
-1
votes
2answers
28 views
retrieving number from array that can be manipulated [closed]
I am trying to retrieve a number that is stored in an array so that i can manipulate it at a later stage.
for example i have a sum in the array i.e. 500 and i would like to divide that number by x.
...
-1
votes
3answers
67 views
Python: ValueError: invalid literal for int() with base 10: '' error
I have a code that reads the info from a file (lines describe Points, Polygons, Lines and Circles) and parses it into according class. Point has x and 7 coordinates and Line has a starting point and ...
0
votes
2answers
40 views
I'm attempting to fill an array with the 20 most-recent user inputs. When I print the array the wrong ints are ouput
I am working on a simple game for an assignment, which is complete aside from this part that I cannot seem to get right. The game must fill an array with the 20 most recent moves, and print those ...
1
vote
1answer
60 views
How do I convert an array of ints to a NSString in Objective c?
First off, I'm pretty new to coding so bear with me if this is a dumb question.
I don't know how to convert soemthing like int array[10] into a single NSString.
I've been searching for solutions, but ...
-2
votes
2answers
42 views
c++ “cout << number” results with printing “number%” to the screen
I have a strange problem, simple program, f.e.
main()
{
int i=1;
std::cout << i;
}
Results with
1%
on screen. I can't get rid of that "%". Does anyone know what is going on? I am ...
1
vote
2answers
55 views
How to convert QString to int?
I have a QString in my sources.
So I need to convert it to integer without "Kb".
I tried Abcd.toInt() but it does not work.
QString Abcd = "123.5 Kb"
0
votes
0answers
57 views
invalid literal for int() when spliting value with comma
I was looking for answers on this, but every error like that did not mean the same problem...
driver = webdriver.Firefox()
driver.get('http://example.com')
def repeat():
import wx
while 1 ...
0
votes
2answers
28 views
Issue with Int to LPWSTR function
I am making a win32 program that is a level editing tool to go with the library I am creating for a 2D tile system.
I want to create dialog box displaying the maps properties when the user selects it ...
0
votes
1answer
34 views
Calculation returns 0 objective-c [duplicate]
I'm trying to calculate an average where i am getting the value from a textfield and multiplying it by the value of a label.
int grade1 = [[self.Cw1Grade text]intValue];
int grade1weight = ...
0
votes
2answers
28 views
Converting a char to an int for int arithmetic in java
i have a bit of strange confusion happening when trying to convert my char variables from my char array into ints.
Here is my code:
public class Luhn {
private String cardNumber;
private char[] ...
0
votes
7answers
82 views
Python add digits on either side of ' : ' ie. 22:11 + 22:22 = 44:33
22:11 + 22:22 = 44:33
varible_A = ('22:11')
varible_B = ('22:11')
the numbers on the left(22) are minutes
the numbers on the right(11) are seconds
I'm trying to add the two numbers to get
...
1
vote
2answers
53 views
Attempting to create chance calculator
I am relatively new to Java and wanted to try and make a code that would randomly generate 2 numbers a set amount of times, and it would track how many times the 2 numbers are the same. Then after X ...
1
vote
1answer
34 views
How to convert hex string 'o\xf2\x00\x00' into a int32?
all!
When I read first 4 bytes with python code
len = fobj.read(4)
I got 'o\xf2\x00\x00'. This should be an int32, and when I read the file with other tool (matlab, for example), it gives 62063.
...
0
votes
2answers
43 views
Java's Random.nextInt() produces numbers between what and what?
The Oracle java doc says that
All 232 possible int values are produced with (approximately) equal probability.
Does this mean that the values generated range from -(232) to 232, or would that ...
0
votes
1answer
25 views
java primefaces how to show enum name of int value from database on xhtml
Here is the situation and I really don't know what to do.
I want to persist months with jpa and enum where months will be persisted as corresponding int values. I read a lot of similar questions and I ...
-2
votes
7answers
93 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
4answers
68 views
c++ int switch statement always goes to `default`
I have a switch statement that is based off an int comparison, but for some reason, it keeps failing on true comparisons, and skipping to the default. Here's my code:
string Error(int errorNum, int ...
0
votes
2answers
29 views
Mysql convert an int to MAC
I have some data that converts which has a 2 columns one column has IP and it contains values which are integers.I used the following function in my mysql query.Is there a function i can use to to ...
0
votes
2answers
56 views
How to convert string like 0x0000 to int
How do i convert string like 0x0000 to integer???
This code does not work(Func atof always return 0).
String str = "0xffff";
(unsigned int)atof(str);
2
votes
3answers
58 views
How do I add 3 bytes and return an integer number?
Lets assume that I have a hex string of
00 00 04 01 11 00 08 00 06 C2 C1 BC
With this the 7th, 8th, and 9th octet are a number I need to generate. The hex is
00 06 C2
This number turns ...
-1
votes
5answers
45 views
My class doesn't work propery
I'm getting an error in my code I don't get at all.
Here is my code:
MyClass.h
#include "MyClass.h"
int i = 1;
MyClass::MyClass()
{
}
MyClass:~MyClass()
{
}
MyClass.cpp
#pragma once
...
0
votes
1answer
49 views
Python calculations: floats and ints
In a long code of 600 lines I have one part of the code that calculates something weird.
idl = 0
print type(dl), dl
idl = int(dl*10)+1
print idl
This returns:
<type 'float'> 0.1
1
This ...
0
votes
2answers
47 views
int parse not adding to list properly
I have a textbox that takes a int input from a user, I then use a loop to add each digit to my list integerList. But when I display the list in my listbox it only displays the first int. For instance ...
0
votes
3answers
53 views
Strict comparaison between char and int
I would like to know if it was possible to compare an integer and a char.
Something that could be the "===" from Javascript.
Because
'a' == 97
Will ouput
1
Edit : I would like something like
...
0
votes
2answers
31 views
Assigning optarg to an int in C
I am trying to assign an optarg value to an int, but the compiler gives me the following warning:
warning: assignment makes integer from pointer without a cast [enabled by default]
I have tried ...
-5
votes
1answer
44 views
Dividing two int variables in python [closed]
I am learning python and here is a piece of code:
x = raw_input('Enter a numerator:')
y = raw_input('Enter a denominator:')
print x / y
This gives me an error:
Traceback (most recent call last):
...
-3
votes
3answers
44 views
int not initialized compilation error [duplicate]
Ok, so I searched for a similar thread like this one but couldn't find the answer I'm looking for.
I'm trying to program something that generates random numbers and turns them into a question.
I'm ...
0
votes
1answer
13 views
convert Decimal Number of a string into int using Integer.valueOf() java
As theres some decimal numbers in my text file, but the Integer.valueOf() is not working for decimal numbers, is there any other ways that i can convert this string into int?
0
votes
1answer
43 views
how to change the string with decimal and hyphen into int
I am grabbing IP addresses from a site and part of the result looks like this.
192.168.1.1\t12345\t12345\t2013-05-14\t2013-05-14\n192.168.1.1\t98765\t98765\t2013-05-14\t2013-05-14
And of course ...
0
votes
0answers
6 views
How to read nth word/int from a line in a text file?
I have a text file which I am reading line by line using...
BufferedReader br;
try {
br = new BufferedReader(new FileReader("test.txt"));
String line;
while ((line = br.readLine()) != null) {
...
1
vote
3answers
83 views
C++ comparing iterator with int
Is there a simple way to compare an iterator with an int?
I have a loop like this:
for (std::vector<mystruct>::const_iterator it = vec->begin(); it != vec->end(); ++it)
Instead of ...
0
votes
0answers
16 views
VARCHAR value retunring as INT in a subquery
I am writing a query to assign a category to an account based on its attributes. I'm encountering an error when I insert a subquery to return the accounts (lg_CisNo in this example) that are new ...
0
votes
1answer
42 views
What is the default value of an NSUInteger in local scope? [duplicate]
Given the following snippet:
- (void)doSomething
{
NSUInteger count;
}
What is count? Is it guaranteed to be 0?
1
vote
2answers
32 views
Using fprintf to print on several lines in Matlab
Question:
Write a procedure called Print7 to print all integer numbers within the range 0:100 that are divisible by 7. Ten numbers are to be printed on one output line. Hence write a program that ...
0
votes
1answer
40 views
Differentiating String/Int User Input
I am having issues trying to type code that will make my program distinguish whether the user inputs a string value or an int value. If an int value is typed in, it will be stored into an array (named ...
0
votes
1answer
31 views
Object type reference variable assigned to a primitive
In java, the int is a primitive type and the Integer is an object.
Integer x = 4;
This line of code produces no errors, even though I think it technically should if there was no special case ...
-3
votes
2answers
71 views
Program speed vs memory usage [duplicate]
I wonder about my program speed. When I use methods like Array.GetLength(1) or so it always returns int variable. Or when I insert a single number the compiler declares it as int again. Do I need to ...
0
votes
3answers
35 views
Getting perplexing results in Ruby trying to do integer.to_s to convert it to a string
Very simply put, when I try to insert an integer into a method, then convert it into a string, and print out the first character into the string, I get the number in the [0] slot + 48. Without fail, I ...
0
votes
1answer
40 views
python standard library - int
I was reading through the documentation to the Python Standard Library. In section 4.4. Numeric Types there is a note to int:
Conversion from floating point to integer may round or truncate as in
...
0
votes
3answers
50 views
Filtering out ints on an array
method takes in an array of ints and returns the new array of ints without even ints. Ive written something up but cannot get the print right in the main method....heres what I have
//filterAway ...
0
votes
3answers
51 views
Placing Integer or String inside of 2D array at certain co-ordinates?
Trying to place either an integer or a string into an 2D char array, but I'm having no luck. Tried converting the integer to a string and then placing it inside the array, but not even sure if that ...
0
votes
1answer
23 views
Adding int to NSMutableArray initWithCapacity
I'm trying to create a mutable array of two integers
@interface ViewController ()
{
NSMutableArray *myArray;
}
initialized with capacity of two objects
- (void)viewDidLoad
{
[super ...
0
votes
2answers
24 views
Copystored array value into arraylist JAVA
I have a int array with 2 number.
I wan to copy this number into array list and print them out.
as much as possible refrain from using Integer result[];
int result[] = {1024,2048};
...




