Advertisement
JoshJurban

Exercise 6.1B

Oct 23rd, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. package chapterSix;
  2.  
  3. public class Variousloops
  4. {
  5.      public static void main(String[] args)
  6.      {
  7.        
  8.          {
  9.             int PowerSum = 0;
  10.             for(int s = 1; s <= 100; s++)
  11.             {
  12.                 PowerSum = PowerSum + s^2;
  13.             }
  14.             System.out.println(PowerSum);
  15.  
  16.          }
  17.      }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement