small changes

This commit is contained in:
2018-03-07 21:48:28 +01:00
parent 1136a8ddf9
commit e0ac1d1958
2 changed files with 28 additions and 17 deletions

View File

@@ -12,6 +12,9 @@ public class Main {
System.out.println(input);
System.out.println((int)input);*/
System.out.println(1/2);
System.out.println(1.0/2.0);
System.out.println(8 + 11 % 2);
System.out.println((8 + 11) % 2);
}