Advertisement
apez1

Term 1: Lesson 24 - Coding Activity 2

Oct 4th, 2018
510
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. public class Lesson_24_Activity_Two {
  2.  
  3.     public static void main(String[] args) {
  4.        
  5.        
  6.         for(int i = 1; i >= 1 && i <= 50; i++ ) {
  7.            
  8.             if(i == 1) {
  9.                 System.out.println("1");
  10.                
  11.             }
  12.             if(i % 2 == 0) {
  13.                 System.out.println(i);
  14.             }
  15.            
  16.                
  17.         }
  18.            
  19.            
  20.     }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement