public class NeverGonnaGiveYouUp {
public static void main(String[] args) {
String neverGonnaLetYouDown;
final int num = 42;
String word = "nevergonnarunaround"; // and desert you
neverGonnaLetYouDown = num + word;
System.out.println(neverGonnaLetYouDown + " " + num + " " + word);
if (num < 0) {
System.out.println("Вы сохранили отрицательное число");
} else if (num > 0) {
System.out.println("Вы сохранили положительное число");
} else {
System.out.println("Вы сохранили нуль");
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
public class NeverGonnaGiveYouUp {
public static void main(String[] args) {
String neverGonnaLetYouDown;
final int num = 42;
String word = "nevergonnarunaround"; // and desert you
neverGonnaLetYouDown = num + word;
System.out.println(neverGonnaLetYouDown + " " + num + " " + word);
if (num < 0) {
System.out.println("Вы сохранили отрицательное число");
} else if (num > 0) {
System.out.println("Вы сохранили положительное число");
} else {
System.out.println("Вы сохранили нуль");
}
}
}