Java Entfernen Sie die erste Ziffer von int int
int x = 123456789;
int new_x = Integer.parseInt(Integer.toString(x).substring(1));
Vivacious Vulture
int x = 123456789;
int new_x = Integer.parseInt(Integer.toString(x).substring(1));