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
/* | |
* 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++){ |