백지부터 시작하는 이세계 코딩 생활
함수 호출 본문
<함수호출 연습2>
public class callByFunction2 {
public callByFunction2() {
// 컨트롤 + 스페이스를 눌러서 만들기를 활성화 후 생성할 수 있다.
// do-whilefunction test.
doWhileTset2();
}// end callByFunction2
private void doWhileTset2() {
char ch = 'A';
do {
System.out.println(ch);
ch = (char) (ch + 1); // 형변환 해줌. // 형변환 없이 하는 방법: ch++;
} while (ch <= 'Z');
}// end doWhileTset2
public static void main(String[] args) {
new callByFunction2();
}// end main
}// end class
<결과확인>
<함수호출 연습3>
public class callByFunction3 {
public callByFunction3() {
for (int i = 2; i <= 9; i++) {
if(i%2==1) continue;
for (int j = 1; j <= 9; j++) {
System.out.printf("%dx%d=%d\t", i, j, i * j);
//포멧 중 하나
}
System.out.println();
}
}
public static void main(String[] args) {
// TODOAuto-generated method stub
new callByFunction3();
}// end main
}// end class
'JAVA > 함수호출' 카테고리의 다른 글
setter, getter (0) | 2020.08.09 |
---|
Comments