What will be the output of the following program?
class Operators1
{
public static void main(String[] args)
{
int a = 34;
int b = 21;
int c = a++ + ++b;
int d = --a + --b + c--;
int sum = a + b + c + d ;
System.out.println("sum = " + sum);
}
}
Answers
Answered by
0
Answer:
we get input of the put ok
Answered by
0
Answer:
sum=221
Explanation:
Similar questions