Here you can find the source of sumIsMod10(int sum)
public static boolean sumIsMod10(int sum)
//package com.java2s; //License from project: Apache License public class Main { public static boolean sumIsMod10(int sum) { return ((sum % 10) == 0); }/*from ww w . j a v a2s . co m*/ }