| Author |
functoin which gives reminder from division operation
|
swatione chowdary
Greenhorn
Joined: Apr 07, 2005
Posts: 27
|
|
if we divide two numbers we have to get reminder like: 34/10=3 , but reminder is 4. we should catch 4 in an integer. any function in java which could return the reminder from division opration.
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24039
|
|
That would be the modulus operator, '%', as in 34 % 10 == 4. Moving from Java in General (Advanced) to Java in General (Beginner). In the future, please choose a forum more carefully before posting a question.
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: functoin which gives reminder from division operation
|
|
|