PROGRAMMING AND CODE
Assignemnt #84
Code
/// Name: Justin Li
/// Period: 7
/// Program Name: Noticing Even Numbers
/// File Name: NoticingEvenNumbers.java
/// Date Completed: 2/16/16
public class EvenNumbers {
public static void main(String[] args) throws Exception {
for (int x = 1; x <= 20; x++) {
if (x % 2 == 0)
System.out.println(x + " <");
else
System.out.println(x);
}
}
}