Method(함수) 사용
작성자 정보
- 작성자 최고관리자
- 작성일
컨텐츠 정보
- 조회 321
본문
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;
}
}
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) - 실수를 정수로 변환
}
}
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 + "입니다." );
}
}
관련자료
-
이전
-
다음
댓글 0개
등록된 댓글이 없습니다.