JAVA 자료실

Method(함수) 사용

페이지 정보

작성자 최고관리자 작성일 70-01-01 09:00 조회 332 댓글 0

본문

[code=php]
public class Main {

public static void main(String[] args) {
// TODO Auto-generated method stub

int x = 50;
int y = 60;

System.out.println("최댓값은 " + max(x, y) + "입니다.");

}

//변환형(sTRING), 함수이름(max), 매개변수((int x, int y))
private static int max(int a, int b) {

int result = (a > b ) ? a : b;

return result;
}
}
[/code]


[code=php]
public class Main {

public static void main(String[] args) {
// TODO Auto-generated method stub

double a = Math.pow(3.0,  20.0); //거듭제곱 연산함수

System.out.println("3의  20 제곱은 " + (int) a + "입니다."); //(int) - 실수를 정수로 변환

}
}
[/code]


[code=php]
public class Main {

public static void main(String[] args) {

int i = 20;
i = i + 1 ;
System.out.println("i = i + 1의 결과는 " + i + "입니다." );

int j = 20;
j += 1;
System.out.println("j += 1의 결과는 " + j + "입니다." );

}
}
[/code]

댓글목록 0

등록된 댓글이 없습니다.

알림 0