Skip to content

Instantly share code, notes, and snippets.

View devhard1's full-sized avatar

devhard1

View GitHub Profile
@devhard1
devhard1 / 노현우_과제1.java
Created April 15, 2024 03:16
구구단출력하기
public class multiplication {
public static void main(String[] args) {
System.out.println("구구단표");
for (int i = 2; i < 10 ; i++) {
for (int j = 1; j < 10 ; j++) {
System.out.print(i +"x"+ j + "=" + String.format("%2d", i * j));
System.out.print(" ");