micher43

E6.1 part A

Oct 23rd, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public class E61 {
  2.  
  3.     public static void main(String[] args) {
  4.         int SumEvens = 0;
  5.         for(int i=2; i <= 100; i = i +2){
  6.             SumEvens = SumEvens + i;
  7.            
  8.         }
  9.         System.out.print(SumEvens);
  10.        
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment