fork download
  1. class Modulus {
  2. public static void main(String args[])
  3. {
  4. double a = 25.64;
  5. int b = 25;
  6. a = a % 10;
  7. b = b % 10;
  8. System.out.println(a + " " + b);
  9. }
  10. }
Success #stdin #stdout 0.06s 2841600KB
stdin
Standard input is empty
stdout
5.640000000000001 5