티스토리 뷰
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
42
43
44
45
46
47
48
49
50
51
52 |
import java.util.Scanner;
class square{
int x1,y1;
int x2,y2;
int x3,y3;
int x4,y4;
square()
{
}
static int WhoisBig(int i, int j)
{
return (i>j)? i : j;
}
static int WhoisSmall(int i ,int j)
{
return (i<j)? i : j;
}
}
public class J197 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner Sc = new Scanner(System.in);
square A = new square();
A.x1 = Sc.nextInt();
A.y1 = Sc.nextInt();
A.x2 = Sc.nextInt();
A.y2 = Sc.nextInt();
A.x3 = Sc.nextInt();
A.y3 = Sc.nextInt();
A.x4 = Sc.nextInt();
A.y4 = Sc.nextInt();
int a, b,c,d;
a = square.WhoisSmall(A.x1, A.x3);
b = square.WhoisSmall(A.y1, A.y3);
c = square.WhoisBig(A.x2, A.x4);
d = square.WhoisBig(A.y2, A.y4);
System.out.print(a+" "+b+" "+c+" "+d);
}
}
|
cs |
'IT > JAVA' 카테고리의 다른 글
메소드 오버라이딩 (0) | 2017.07.13 |
---|---|
[정보올림피아드] 198번 (0) | 2017.07.10 |
메소드 오버로딩 (Method overloading) (0) | 2017.07.10 |
예외처리 TRY-CATCH-FINALLY 문 (0) | 2017.07.06 |
main메소드 안에 args는 무엇일까 ? (0) | 2017.07.06 |
댓글