write a program using short hand operator
(java)
only correct will be marked as brainlest ☺️
Answers
Answered by
1
Answer:
Java provides shorthand operator to combine the arithmetic and assignment operator Into a single operator and write the above statement like this: a += 10;
Explanation:
Operator. Example. Same As
*= ×*=5. ×=×*=5
/= ×/=5. ×=×/=5
%= ×%=5. ×=×%=5
Similar questions