473,396 Members | 1,971 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

test if integer


Hi,

I have a variable of type double.
I need to know if there is an integer number store there. How can I
test that ?

I also have a default precision for doing this operation.

Many thanks,
Laura

Aug 4 '07 #1
7 30174
laura wrote:
>
Hi,

I have a variable of type double.
I need to know if there is an integer number store there. How can I
test that ?

I also have a default precision for doing this operation.
#include <math.h>

if (fmod(variable, 1) == 0) {/* variable is an integer */}

--
pete
Aug 4 '07 #2
laura wrote:
Hi,

I have a variable of type double.
I need to know if there is an integer number store there. How can I
test that ?

I also have a default precision for doing this operation.
In addition to the following kind of test, think about whether the
ceil() or floor() functions might provide you a test. Consider whether
using them leads to a more reliable test or a more efficient one.

The newer functions round(), trunc(), rint, and nearbyint() might also
provide you with suitable tests. The rint() might be what you want,
since it raises the "inexact" floating point exception if the argument
is not an integer. You might find that learning how to handle floating
point exceptions is not what you want to be doing now, though. If you
do, check your text for a discussion of the <fenv.hheader. If your
implementation does not provide such a header, then don't bother.

#include <stdio.h>
#include <math.h>

int main(void)
{
int i;
double base = 4080., testv, intpart, fraction;
for (i = 2; i <= 20; i++) {
testv = base / i;
printf("Testing %g: ", testv);
fraction = modf(testv, &intpart);
if (fraction) {
printf("fractional part = %g\n"
" so probably not an integer.\n"
"integer part = %g.\n\n", fraction, intpart);
}
else {
printf("fractional part test == 0,\n" " so an integer.\n"
"integer part = %g.\n\n", intpart);
}
}
return 0;
}

Testing 2040: fractional part test == 0,
so an integer.
integer part = 2040.

Testing 1360: fractional part test == 0,
so an integer.
integer part = 1360.

Testing 1020: fractional part test == 0,
so an integer.
integer part = 1020.

Testing 816: fractional part test == 0,
so an integer.
integer part = 816.

Testing 680: fractional part test == 0,
so an integer.
integer part = 680.

Testing 582.857: fractional part = 0.857143
so probably not an integer.
integer part = 582.

Testing 510: fractional part test == 0,
so an integer.
integer part = 510.

Testing 453.333: fractional part = 0.333333
so probably not an integer.
integer part = 453.

Testing 408: fractional part test == 0,
so an integer.
integer part = 408.

Testing 370.909: fractional part = 0.909091
so probably not an integer.
integer part = 370.

Testing 340: fractional part test == 0,
so an integer.
integer part = 340.

Testing 313.846: fractional part = 0.846154
so probably not an integer.
integer part = 313.

Testing 291.429: fractional part = 0.428571
so probably not an integer.
integer part = 291.

Testing 272: fractional part test == 0,
so an integer.
integer part = 272.

Testing 255: fractional part test == 0,
so an integer.
integer part = 255.

Testing 240: fractional part test == 0,
so an integer.
integer part = 240.

Testing 226.667: fractional part = 0.666667
so probably not an integer.
integer part = 226.

Testing 214.737: fractional part = 0.736842
so probably not an integer.
integer part = 214.

Testing 204: fractional part test == 0,
so an integer.
integer part = 204.

Aug 4 '07 #3
In article <11**********************@l70g2000hse.googlegroups .com>,
laura <la*************@gmail.comwrote:
>I have a variable of type double.
I need to know if there is an integer number store there. How can I
test that ?
Other posters have given some good ideas.

You do need to be careful, though: if you do fmod(value,1.0) can you be
sure that there will not be any round-off in the last unit?

You also have a problem of resolution: if the input value is (say)
1263330816481424704.3432 then with a IEEE 754 double, this
would be stored as 1.2633308164814246e+18 which has been unable
to store the last 104.3432 or so; fmod(1.2633308164814246e+18,1.0)
would be 0 even though the input was not an integer as far as
the human was concerned.
--
Is there any thing whereof it may be said, See, this is new? It hath
been already of old time, which was before us. -- Ecclesiastes
Aug 4 '07 #4
On Sat, 04 Aug 2007 18:18:35 +0000, Walter Roberson wrote:
In article <11**********************@l70g2000hse.googlegroups .com>,
laura <la*************@gmail.comwrote:
>>I have a variable of type double.
I need to know if there is an integer number store there. How can I
test that ?

Other posters have given some good ideas.

You do need to be careful, though: if you do fmod(value,1.0) can you be
sure that there will not be any round-off in the last unit?

You also have a problem of resolution: if the input value is (say)
1263330816481424704.3432 then with a IEEE 754 double, this
would be stored as 1.2633308164814246e+18 which has been unable
to store the last 104.3432 or so; fmod(1.2633308164814246e+18,1.0)
would be 0 even though the input was not an integer as far as
the human was concerned.
What? She asked how to know "if there is an integer number
store[d] there". She did not ask to know whether it is an integer
because of rounding, considering there is no way a C program can
determine that.

--
Army1987 (Replace "NOSPAM" with "email")
"Never attribute to malice that which can be adequately explained
by stupidity." -- R. J. Hanlon (?)

Aug 5 '07 #5
In article <pa****************************@NOSPAM.it>,
Army1987 <ar******@NOSPAM.itwrote:
>On Sat, 04 Aug 2007 18:18:35 +0000, Walter Roberson wrote:
>In article <11**********************@l70g2000hse.googlegroups .com>,
laura <la*************@gmail.comwrote:
>>>I have a variable of type double.
I need to know if there is an integer number store there. How can I
test that ?
>You also have a problem of resolution: if the input value is (say)
1263330816481424704.3432 then with a IEEE 754 double, this
would be stored as 1.2633308164814246e+18 which has been unable
to store the last 104.3432 or so;
>What? She asked how to know "if there is an integer number
store[d] there". She did not ask to know whether it is an integer
because of rounding, considering there is no way a C program can
determine that.
But she asked whether there is an integer "number" stored there,
not an integer "value". "number" is the pure concept, with "double"
being an approximation. When one examines the approximation, one cannot
be sure that the original -number- was an integer or not.
--
Programming is what happens while you're busy making other plans.
Aug 5 '07 #6
On Sun, 05 Aug 2007 19:51:55 +0000, Walter Roberson wrote:
In article <pa****************************@NOSPAM.it>,
Army1987 <ar******@NOSPAM.itwrote:
>>On Sat, 04 Aug 2007 18:18:35 +0000, Walter Roberson wrote:
>>In article <11**********************@l70g2000hse.googlegroups .com>,
laura <la*************@gmail.comwrote:
I have a variable of type double.
I need to know if there is an integer number store there. How can I
test that ?
>>You also have a problem of resolution: if the input value is (say)
1263330816481424704.3432 then with a IEEE 754 double, this
would be stored as 1.2633308164814246e+18 which has been unable
to store the last 104.3432 or so;
>>What? She asked how to know "if there is an integer number
store[d] there". She did not ask to know whether it is an integer
because of rounding, considering there is no way a C program can
determine that.

But she asked whether there is an integer "number" stored there,
not an integer "value". "number" is the pure concept, with "double"
being an approximation. When one examines the approximation, one cannot
be sure that the original -number- was an integer or not.
If I write
double a;
a = 1.000000000000000000000000000000000000000000000000 00000000001;
supposing DBL_EPSILON is large enough, that number gets rounded
*before* being stored in a. The number stored in a is 1.
If she meant "How do I know whether the number 'intended to' be
stored is integer", well, short of having the program read its own
source for constants, tricky workarounds for strtod, and
calculations with infinite precision for other things such as
(1.0 / 3.0) * 3.0, how the hell is she supposed to do that?

--
Army1987 (Replace "NOSPAM" with "email")
"Never attribute to malice that which can be adequately explained
by stupidity." -- R. J. Hanlon (?)

Aug 6 '07 #7
In article <pa****************************@NOSPAM.it>,
Army1987 <ar******@NOSPAM.itwrote:
>On Sun, 05 Aug 2007 19:51:55 +0000, Walter Roberson wrote:
>In article <pa****************************@NOSPAM.it>,
Army1987 <ar******@NOSPAM.itwrote:
>>>On Sat, 04 Aug 2007 18:18:35 +0000, Walter Roberson wrote:
>>>In article <11**********************@l70g2000hse.googlegroups .com>,
laura <la*************@gmail.comwrote:
>I have a variable of type double.
>I need to know if there is an integer number store there. How can I
>test that ?
>>>You also have a problem of resolution: if the input value is (say)
1263330816481424704.3432 then with a IEEE 754 double, this
would be stored as 1.2633308164814246e+18 which has been unable
to store the last 104.3432 or so;
>If she meant "How do I know whether the number 'intended to' be
stored is integer", well, short of having the program read its own
source for constants, tricky workarounds for strtod, and
calculations with infinite precision for other things such as
(1.0 / 3.0) * 3.0, how the hell is she supposed to do that?
Exactly. She can't. There's the problem of resolution; infinite
resolution, just as you point out.

When people ask questions here, what they ask to do isn't always
possible to do. But often, what they ask to do isn't actually
what they want to do; sometimes it is more feasible and sometimes
it is even less feasible; we can but point out the issues and hope
that helps.
--
"No one has the right to destroy another person's belief by
demanding empirical evidence." -- Ann Landers
Aug 6 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: NotGiven | last post by:
I need to check the $_GET to make certain it is a positive integer. is_integer($_GET) is not working. I think it thinks it's a sting. So I tried casting it to an int using,...
467
by: mike420 | last post by:
THE GOOD: 1. pickle 2. simplicity and uniformity 3. big library (bigger would be even better) THE BAD:
7
by: Jeff Gilchrist | last post by:
I have tried searching the newsgroup along with the GCC site and could not find what I think is probably a simple solution. I am using a 64bit unsigned long long integer and can manipulate 64bits...
2
by: js | last post by:
I need to test if an integer variable is null or not. I tried to do int myVairable; myVariable = Int32.Parse(txtControl1.Text.Trim()); if (myVariable != null) {// do something} C# does not...
35
by: Cor | last post by:
Hallo, I have promised Jay B yesterday to do some tests. The subject was a string evaluation that Jon had send in. Jay B was in doubt what was better because there was a discussion in the C#...
2
by: Greg | last post by:
Please note: I have cross posted this from Newsgroup: microsoft.public.dotnet.framework.aspnet.webservices with a few minor changes... I am having a simple problem setting up the security on my...
20
by: Jay | last post by:
Hello, I am sure this has a quick and easy solution but I can't find it. I need to store 19 '9's in an integer which means i need an unsigned 64 bit integer. in Visual Studio the code would...
43
by: Steven T. Hatton | last post by:
http://public.research.att.com/~bs/bs_faq2.html#int-to-string Is there no C library function that will take an int and convert it to its ascii representation? The example Bjarne shows in his faq...
8
by: aarklon | last post by:
hi all, in http://www.c-faq.com/cpp/ifendian.html it is said that integer formats used in pre processor #if expressions are not the same as those will be used at run time. can any one...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.