반응형
250x250
Notice
Recent Posts
Recent Comments
Link
관리 메뉴

Yeonee's Story

[JAVA/자바 요약정리] 자바 제어문 - 구구단 만들기 본문

JAVA/JAVA 요약정리

[JAVA/자바 요약정리] 자바 제어문 - 구구단 만들기

yeonee 여니 2023. 6. 15. 14:06
728x90
반응형
SMALL

안녕하세요.

https://blog.naver.com/sysysy0302 여니입니다 :)

 

package Control;

public class Multiple_Table {

public static void main(String[] args) {

// 구구단

// 2 * 1 = 2

// 2 * 2 = 4

 

for (int i = 2; i < 10; i++) {

 

for (int j = 1; j < 10; j++) {

System.out.println(i + "x" + j + "=" + (i * j));

}

 

// int j = 1;

// System.out.println(i + "x" + j + "=" + (i * j)); // 2 * 1 = 2

// j++;

// System.out.println(i + "x" + j + "=" + (i * j)); // 2 * 2 = 4

// j++;

// System.out.println(i + "x" + j + "=" + (i * j)); // 2 * 3 = 6

 

System.out.println();

}

}

}

 

+ 위 포스팅은 해당 참고 영상을 통해 공부한 자료 입니다.

https://www.youtube.com/watch?v=NQq0dOoEPUM&t=30161s
728x90
반응형
LIST