Computer Science, asked by sonukaur507, 1 day ago

if int a=76498,a,b; c=a/10000; d=a%10; system.out.println(a+b);​

Answers

Answered by Astonishedsalmon
0

Answer:

it would be 'b' instead of 'd' at (d=a%10)

so ,

for 'b=a%10'

ans = 76506

Explanation:

since 76498%10 = 8   (it returns unit place value)

and 76498+8=76506

Similar questions