1
vote
4answers
54 views
Pseudorandom Sequence Generator not just a number generator.
I need an algorithm that pretty much will turn a unix timestamp into a suitably random number, so that if I "play back" the timestamps I get the same random numbers.
And here's wh …
0
votes
3answers
74 views
Conversion from string “” to type ‘Integer’ is not valid.
When I try to run the following code I get a Conversion from string "" to type 'Integer' is not valid. error.
Dim maj = (From c In connect.Courses _
Wher …
1
vote
4answers
74 views
objective-C : @synthesize not working and basic operations not working :*(
I am unsure why this code will not work and what i want it to do is when i click a button(action: buttonclick) i want it to change the two text box's(MyTextLabel & MyTextLabel2 …
1
vote
3answers
128 views
c++ - convert pointer string to integer
I am trying to convert treePtr->item.getInvest() which contains a string to an integer. Is this possible?
1
vote
2answers
72 views
Python Class with integer emulation
Given is the following example:
class Foo(object):
def __init__(self, value=0):
self.value=value
def __int__(self):
return self.value
I want to have a c …
1
vote
3answers
204 views
Fast Multiplication
Hi!
I'm writing code for a microprocessor with fast integer arithmetic and not so fast float arithmetic. I need to divide an integer by a number from 1 to 9 and convert result bac …
1
vote
1answer
65 views
Coverting an integer to bits in ocaml [closed]
This seems like a pretty simple problem, but I'm new to OCaml and need some help with the syntax. I'm representing the bit 0 as false and 1 as true. I need a recursive function tha …
8
votes
14answers
816 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++?
0
votes
3answers
65 views
Quick Multiplication Question - Cocoa
Hi there,
I'm still learning, and I'm just stuck. I want the user to enter any number and in result, my program will do this equation:
x = 5*y
(y is the number the user adds, x …
2
votes
5answers
134 views
How to convert an ASCII value into a character in .NET
There are a million posts on here on how to convert a character to its ASCII value.
Well I want the complete opposite.
I have an ASCII value stored as an int and I want to display …
0
votes
4answers
44 views
How does an environment (e.g. Ruby) handle massive integers?
My integers in Ruby (MRI) refuse to overflow. I've noticed the class change from fixnum to bignum but I'm wondering how this is modeled and what sort of process ruby uses to perfo …
0
votes
4answers
79 views
How can I check if a string contains a number smaller than an integer?
Having some issue with this...
if (System.Convert.ToInt32(TotalCost(theOrder.OrderData.ToString()).ToString()) < 10000)
ViewData["cc"] = "OK";
else
View …
1
vote
2answers
122 views
Why is the number 16 converted to float(6.1026988574311E_320) by PHP using Zend_Amf
The Zend_Amf specification states that a Number type returned from flash will map to a float in PHP. Fine. But why does the number 16 get returned as 6.1026988574311E_320 ? PHP ver …
5
votes
8answers
400 views
How do I tell if a C integer variable is signed?
As an exercise, I'd like to write a macro which tells me if an integer variable is signed. This is what I have so far and I get the results I expect if I try this on a char variab …
0
votes
2answers
66 views
PHP’s unsigned integer on 32 bit and 64 bit platform
Here is the code:
echo sprintf('%u',-123);
And this is the output on 32 bit platform:
4294967173
but on 64 bit:
18446744073709551493
How to make it the same ?Say,the int(1 …
