Posts

Showing posts with the label Integer.parseInt

[JAVA] change character value to integer value

Image
class A{ public static void main(String[] args){ String a="100"; int b=Integer.parseInt(a);  System.out.println(a+1); System.out.println(b+1); } } result  1001  101  😀 Thank you!! 감사합니다!!