Assignemnt: Program #84 and Noticing Even Numbers
Code
/// Name: Yordan Rashkov
/// Period: 7
/// Program Name: Noticing Even Numbers
/// File Name: NoticingEvenNumbers.java
/// Date Finished: 3/01/2016
public class NoticingEvenNumbers
{
public static void main( String[] args )
{
for(int i = 0; i < 20; i++)
{
System.out.println((i+1) +(((i+1)%2==0)?" <":""));
}
}
}