Advertisement
Droo

P4_1b

Oct 22nd, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. package PreSession_05;
  2.  
  3. public class p4_1b {
  4.  
  5.     public static void main(String[] args) {
  6.         int total = 0;
  7.         int count = 1;
  8.         while (count <= 100)    {
  9.             total = total + (count * count);
  10.             count += 1;
  11.         }
  12.     System.out.println("Total = "+total);
  13.  
  14.     }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement