+ 3
Java
public class Program { public static void main(String[] args) { int a=12,b=8; a=++a/6+b++%3; System.out.println(a); } } What is the meaning of a=++a/6+b++%3;
4 odpowiedzi
+ 3
ok tq Rewa Mathur
+ 1
but what abt b++ Rewa Mathur
public class Program { public static void main(String[] args) { int a=12,b=8; a=++a/6+b++%3; System.out.println(a); } } What is the meaning of a=++a/6+b++%3;