micher43

E6.1 part B

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