Jak zrobić INT w Java String
int i=10;
String s=String.valueOf(i);
Sid Potti
int i=10;
String s=String.valueOf(i);
Integer.toString(int)