mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
10 lines
166 B
Java
10 lines
166 B
Java
public class pr8945
|
|
{
|
|
public static void main(String[] args)
|
|
{
|
|
String foo = "hello";
|
|
int pos = 3;
|
|
System.out.println(foo.substring(pos,++pos));
|
|
}
|
|
}
|