You are on page 1of 1

package Lesson1;

public class MyFirst {


public static void main(String[] args) {
int x,y,answer;
x = 70;
y = 30;
answer = x%y;
//+ - * /%
System.out.println("Answer = " + answer);
}

}
.......................................
package Lesson1;
public class MyFirst {
public static void main(String[] args) {
int x = 10;
System.out.println(++x);//x++
System.out.println(x);
}

}
--------------------------------
x+=5;
x*=5;
x-=5;
x/=5;

You might also like