Заданы три числа a,b,c. Найти
наибольшее значение среди них.
Составьте блок-схему или программный
код.
Ответы
//Объявление класса "Scanner", для дальнейших вводов пользователя
import java.util.Scanner;
public class Znanija {
public static void main(String args[]) {
\\Объявления трёх чисел
int x, y, z, maxNumber;
Scanner input = new Scanner(System.in);
System.out.println("Write the first number: ");
x = input.nextInt();
System.out.println("\nWrite the second number: ");
y = input.nextInt();
System.out.println("\nWrite the third number: ");
z = input.nextInt();
//Проверка, больше ли первое число других
if (x>y && x>z) {
System.out.println("\nThe number with the highest value is: " + x);
}
//Проверка, больше ли второе число других
else if (y>x && y>z) {
System.out.println("\nThe number with the highest value is: " + y);
}
//Тот же принцип, только с третьим числом — "z"
else if (z>x && z>y) {
System.out.println("\nThe number with the highest value is: " + z);
}
}
}