how to convert string to int and vice-versa in blue j?????????
Answers
Answered by
1
int n ; String s;
n=Integer.parseInt(s);
.
.
.
int n;String s;
s=Integer.toString(n);
n=Integer.parseInt(s);
.
.
.
int n;String s;
s=Integer.toString(n);
Similar questions