Tagged Questions
The maxvalue tag has no wiki summary.
5
votes
2answers
1k views
What is the maximum value of NSInteger?
I need to store the maximum value of an NSInteger into an NSInteger? What is the correct syntax to do it?
Thanks.
5
votes
5answers
1k views
How do you do maths (or math) with numbers bigger than MaxValue in C#?
I want to be able to process arbitrarily large numbers in C#.
I can live with just integers.
Are there established algorithms for this kind of thing?
Or is there a good 3rd-party library?
I ...
3
votes
1answer
1k views
How to represent system constants in XAML (like double.MaxValue)
What is the xaml equivalent of MyProperty = double.MaxValue?
I'm afraid I'll need to use something like MyProperty="{x:Static sys:Int32.MaxValue}", but not sure, and can't find the equivalent for ...
2
votes
3answers
76 views
C# value overflow limiting
I need to limit the value on overflow.
I implemented this as follows:
public static sbyte LimitValueToSByte(this int val)
{
if (val > sbyte.MaxValue) return sbyte.MaxValue;
...
2
votes
3answers
455 views
SQL constraint minvalue / maxvalue?
Is there a way to set a SQL constraint for a numeric field that min value should be 1234 and max value should be 4523?
1
vote
2answers
75 views
how to get all the indexes of maximum repeated values in an array in perl
Hi I am new to Perl an in a learning process.
I am having an array
@array = ( 10, 40, 59, 40, 90, 100, 30, 40, 100, 20, );
I want to find the maximum number in the array and also want to know the ...
1
vote
2answers
214 views
Update on row for each group with max value in other column
I have to update a column in a very, very large table. So performance is a big issue.
The question is the similar to this one, but only for Sybase Adaptive Server Enterprise (ASE 12.5.4) plus I need ...
0
votes
4answers
70 views
How to find out max value with the key from a hash in perl where keys hold multiple values
Hi i am trying to find out maximum value in a hash and corresponding key to that maximum value.
my hash looks like
%hash = (
bob => "4.9",
gita =>"3.9 , 6,8",
diu => "3.0",
);
...
0
votes
1answer
44 views
I need a query to count max cuncurrent connection for each user
I have this table log:
ID - MACDevice - USERNAME - startDateTime - stopDateTime - Duration
I need to fill the following table with statistic data:
MACDevice - MAXConcurrentConnection - ...
0
votes
1answer
47 views
Failed to get MaxValue from data
well, maybe this is a simple question for you, but for a newbie like me it's kinda confusing
okey, I try to get a maximum value from an array, here's my code
int sample = input.GetLength(0);
double ...
0
votes
4answers
453 views
How to check if number fits primitive type in java?
I need do to some input validation but run into a question and I do not seem to find an answer (even with Google). The problem is simple: I have 2 positive integers on the input, and I need to check ...
0
votes
2answers
126 views
How can I select values from different rows depending on the most recent entry date, all for the same employee ID?
Basically I have a table which is used to hold employee work wear details. It is formed of the columns:
EmployeeID, CostCentre, AssociateLevel, IssueDate, TrouserSize, TrouserLength, TopSize & ...
0
votes
8answers
2k views
Integer counter - What to do when Max-Value?
How do you solve the max value problem when using an integer counter, that looks like
counter = counter + 1;
When this reaches the max value, how do you know this happened? Do you add another ...
0
votes
2answers
430 views
uint.MaxValue in .NET
uint x = uint.MaxValue - 100;
The above line causes visual studio to report "The operation overflows at compile time in checked mode"
I'm obviously missing something. Any ideas what?