Skip to content

Instantly share code, notes, and snippets.

public class Main {
public static void main(String[] args) {
System.out.println("[구구단 출력]");
int start = 1;
while (start < 10) {
for (int i = 1; i < 10; i++) {
int result = i*start;