-
Notifications
You must be signed in to change notification settings - Fork 1
/
Задача доп 4.java
41 lines (35 loc) · 1.1 KB
/
Задача доп 4.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import java.util.Scanner;
/*
4
Даны три вещественных числа a, b, c. Проверить:
1. выполняется ли неравенство a < b < c;
2. выполняется ли неравенство b > a > c.
*/
public class Main
{
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("a:");
int a = in.nextInt();
System.out.println("b:");
int b = in.nextInt();
System.out.println("c:");
int c = in.nextInt();
in.close();
System.out.printf("a = %d b = %d c = %d \n", a,b,c);
System.out.println("выполняется ли неравенство a < b < c");
if ((a<b)&(b<c)){
System.out.println("да" );
}
else{
System.out.println("нет");
}
System.out.println("выполняется ли неравенство b > a > c");
if ((b>a)&(a>c)){
System.out.println("да");
}
else{
System.out.println("нет");
}
}
}