Computer Science, asked by philipsjoshua642, 1 month ago

If w=7;q=9;find the value of d= (--w*q++ -q* --w);

Answers

Answered by itsmerockingaarav
0

Answer:

4

Explanation:

public class Main

{

public static void main(String[] args) {

 int w=7,q=9,d;

 d= (--w*q++ -q* --w);

 System.out.println(d);

}

}

Similar questions