how store number in a string value
Attachments:
![](https://hi-static.z-dn.net/files/dfd/a6ff18fba4755d288f957ac94e63afcd.jpg)
Answers
Answered by
0
Answer:
I am not so perfect in computer science
Explanation:
HOPE IT HELPS YOU MARK AS BRAINLIEST ANSWER
Answered by
1
Question:-
Write a Java statement for the following.
Solution:-
Number 1.
Store a number 275 as a String in variable k.
Code>>
String k=275+"";
Number 2.
Add 100 to the existing value of the variable q.
Code>>
q=q+100 or in short
q+=100
Similar questions