Guest User

Untitled

a guest
Apr 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. /**
  2. * @author bvanchuhov
  3. */
  4. public class Div {
  5.  
  6. public static void main(String[] args) {
  7. System.out.println(10 / 4); // 2
  8. System.out.println(10.0 / 4); // 2.5
  9.  
  10. System.out.println(15 / 6); // 2
  11. System.out.println(15 % 6); // 3
  12. }
  13. }
Add Comment
Please, Sign In to add comment