Computer Science, asked by soumyadeep3995, 5 months ago

int a=34,b,c; b=a%10; c=a/10; a=b+c; System.out.print(b);

Answers

Answered by itsme2021
0

Answer:

Output in the console:-4

Explanation:

b=a%10

b=34%10

b=4

Similar questions