Write a valid Statement to convert 75 to the string "75"??
Answers
Answered by
1
a=75;
String s=Integer.toString(a);
Similar questions