This commit is contained in:
HeshamTB 2019-01-17 20:24:42 +03:00
parent b127b574fa
commit df3967357d

9
src/One.java Normal file
View File

@ -0,0 +1,9 @@
public class One {
public static void main(String[] args) {
int x = 30;
int y = 2;
System.out.println( x * y + 9 / 3 );
}
}