how to convert to a int code example
Example 1: java string to int
int result = Integer.parseInt("500");
System.out.println(result) // prints 500 as int
Example 2: string to int
int i=Integer.parseInt("200");
int result = Integer.parseInt("500");
System.out.println(result) // prints 500 as int
int i=Integer.parseInt("200");