This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
π Morning 133 commits βββββββββββββββββββββ 21.7% | |
π Daytime 246 commits βββββββββββββββββββββ 40.1% | |
π Evening 166 commits βββββββββββββββββββββ 27.1% | |
π Night 68 commits βββββββββββββββββββββ 11.1% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JSON 0 secs βββββββββββββββββββββ 0.0% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); |