1
Дано:
class Feline {
public static void main(String[] args) {
long x = 42L;
long y = 44L;
System.out.print(" " + 7 + 2 + " ");
System.out.print(foo() + x + 5 + " ");
System.out.println(x + y + foo());
}
public static String foo() {
return "foo";
}
}
Каков результат?
Please log in or register to have a possibility to add comment.