+ 1
Please đđ„ș anyone tell me why my program is showing error on excuting .
3 Answers
+ 2
Thank you so much đđ it got solved
+ 1
One error I found is that on your system.out.println-s you are missing + after n's, you need to place one before and after.
for example: you wrote: "The absolute value for" + n "is" + ... but you need to add + between n and "is" too. Everything else seems to work
+ 1
https://code.sololearn.com/ciYdIdxtKlWS/?ref=app
Difference: You forgot to place the plus operator after the variable "n" in println.. Since n is not placed at the last of the println.