CPT111-Week1

Simply started my learning process right here.

1
2
3
4
5
6
7
8
import java.util.*;

public class LoveThreeThousands {
public static void main(String[] args) {
int threeThousands = 3000;
System.out.println("\"I love you "+threeThousands+".\"");
}
}