티스토리 뷰
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 |
import java.util.Scanner;
class calc{
int height;
double weight;
calc()
{
}
static int calcHeight(int i, int j)
{
return ((i+j)/2)+5;
}
static double calcWeight(double i ,double j)
{
return ((i+j)/2)-4.5;
}
}
public class J197 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner Sc = new Scanner(System.in);
calc fa = new calc();
calc ma = new calc();
fa.height = Sc.nextInt();
fa.weight = Sc.nextDouble();
ma.height = Sc.nextInt();
ma.weight = Sc.nextDouble();
System.out.println("height : "+calc.calcHeight(fa.height, ma.height)+"cm");
System.out.printf("weight :%5.1fkg" , calc.calcWeight(fa.weight, ma.weight));
}
}
|
cs |
'IT > JAVA' 카테고리의 다른 글
[JAVA] 오버로딩을 활용한 두점사이의 거리 구하기 (0) | 2017.07.13 |
---|---|
메소드 오버라이딩 (0) | 2017.07.13 |
[정보올림피아드] 197번 (0) | 2017.07.10 |
메소드 오버로딩 (Method overloading) (0) | 2017.07.10 |
예외처리 TRY-CATCH-FINALLY 문 (0) | 2017.07.06 |
댓글