Skip to content

Instantly share code, notes, and snippets.

View isobarbaric's full-sized avatar

Krish Shah isobarbaric

View GitHub Profile
@isobarbaric
isobarbaric / Cssolution1.java
Created October 18, 2022 00:20
Java Solution - CS Problem of the Week #1 (2022-2023)
/*
* Avinash Anand
* October 17, 2022
* This program will print out the times table from 1 to 12, and the if statements format the table.
*/
package cssolution1;
public class Cssolution1 {
public static void main(String[] args) {
int num = 0;
for(int i = 1; i <= 12; i++){