Skip to content

Instantly share code, notes, and snippets.

@hooNode
hooNode / JavaStudy01.java
Created November 13, 2023 10:36
구구단
public class MultiplicationTable {
public static void main(String[] args) {
int startCount = 2;
int endCount = 9;
for (int i = startCount; i <= endCount; i++) {
for (int j = startCount; j <= endCount; j++) {
System.out.print(i + " * " + j + " = " + String.format("%2d", i * j));
System.out.print(" ");
}
System.out.println();
JSON +62.7k/ -34.7k ████████████▍░░░░░░░░ 59.5%
JavaScript +856/ -820 ███▉░░░░░░░░░░░░░░░░░ 18.6%
TypeScript +885/ -278 ██▋░░░░░░░░░░░░░░░░░░ 13.0%
Markdown +180/ -129 █▎░░░░░░░░░░░░░░░░░░░ 6.5%
HTML +86/ -43 ▍░░░░░░░░░░░░░░░░░░░░ 2.3%
Text +6/ -3 ░░░░░░░░░░░░░░░░░░░░░ 0.1%
XML +3/ -1 ░░░░░░░░░░░░░░░░░░░░░ 0.1%
JSON 0 secs ░░░░░░░░░░░░░░░░░░░░░ 0.0%
🌞 Morning 133 commits ████▌░░░░░░░░░░░░░░░░ 21.7%
🌆 Daytime 246 commits ████████▍░░░░░░░░░░░░ 40.1%
🌃 Evening 166 commits █████▋░░░░░░░░░░░░░░░ 27.1%
🌙 Night 68 commits ██▎░░░░░░░░░░░░░░░░░░ 11.1%