
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Apply Modulus Operator to Floating Point Values in Java
To apply modulus (%) operator to floating-point values in an effortless task. Let us see how.
We have the following two values −
double one = 9.7; double two = 1.2;
Let us now apply the modulus operator −
one % two
The following is the complete example that displays the output as well −
Example
public class Demo { public static void main(String args[]) { double one = 9.7; double two = 1.2; System.out.println( one % two ); } }
Output
0.09999999999999964
Advertisements