Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 조건문
- while문
- 반복문
- 변수
- Override
- illustrator
- Singleton
- 메서드
- Java
- After effects
- length
- 상속
- Photoshop
- expand
- switch문
- 클래스
- 멤버변수
- Interface
- 배열
- 파라미터
- Overload
- 형변환
- do while문
- if문
- static
- symbol
- super
- 생성자
- for문
- private
Archives
- Today
- Total
Ms'Note
Method-2 본문
파라미터를 전달받는 메서드
public class Main02 {
public static void main(String[] args) {
f1(100);
f2(10, 20);
}
public static void f1(int x) {
int y = x + 1;
System.out.println(y);
}
public static void f2(int x, int y) {
int z = x * x + y + 1;
System.out.println();
}
}
출력 결과
101
121
Comments