Computer Science, asked by juwairiyahsurti, 8 months ago

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 anshulsaket
0

Answer:

we get input of the put ok

Answered by aditichowdhary15
0

Answer:

sum=221

Explanation:

Similar questions