aspose file tools
The moose likes Beginning Java and the fly likes Mod(%) operator Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Mod(%) operator" Watch "Mod(%) operator" New topic
Author

Mod(%) operator

Shiva Mohan
Ranch Hand

Joined: Jan 05, 2006
Posts: 465



When taking y value as 0 in i1,it gives y1 as true.(0==0).When taking y value as 1 in i1,1 mod 2====>1/2=quotient 0.5 and reminder 0.that way I had taken.(calculator return quotient value 0.5.but compiler return quotient value 0.0 and remainder 0.).

I know that mod operator will give remainder part only.But when I take 1%2 working,I always take 0 as the remainder and 0.5 as the quotient.How comw the 1%2 value is quotient 0.0 and remainder 0?
Rusty Shackleford
Ranch Hand

Joined: Jan 03, 2006
Posts: 490
Because they are integer values, not floating point values.


"Computer science is no more about computers than astronomy is about telescopes" - Edsger Dijkstra
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32689
    
    4
. . . because you are using integer division, which loses its remainder.does not produce a double result. It is integer division which produces an integer result and it is then cast to a double.
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32689
    
    4
Posted by Rusty Shackleford
Because they are integer values, not floating point values.
Snap.
Tony Morris
Ranch Hand

Joined: Sep 24, 2003
Posts: 1608
Because it's not the mod (or modulus) operator nor does it behave like the modulus operator (which Java does not have).

It's the remainder operator, which is described in the JLS. The rest is explanatory from that point on.


Tony Morris
Java Q&A (FAQ, Trivia)
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Mod(%) operator
 
Similar Threads
Preincrement used in an expression
Negative Zero's
XOR operation and GCD calculation
SoDuko puzzle
Base Conversions