mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
16 lines
207 B
Java
16 lines
207 B
Java
|
|
class a {
|
|
public static void main(String[] args)
|
|
{
|
|
int x = 2;
|
|
System.out.println(getS<caret>tring(x + 2));
|
|
}
|
|
|
|
private static String getString(int number)
|
|
{
|
|
return "" + number;
|
|
}
|
|
|
|
|
|
}
|