Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class E61 {
- public static void main(String[] args) {
- int SumSquares = 0;
- for(int i=1; i <= 10; i++){
- SumSquares = SumSquares + (i * i);
- }
- System.out.print(SumSquares);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment