in reply to mathematical operator for integer division, "div" ?
Others have suggested that you mean the remainder of the divsion of the two integers but possible you may mean to round up? Perhaps you may clarify this some?public class temp{ public static void main(String[] args){ int a=5; int b=3; int c=a/b; System.out.println(c); } }
|
|---|