How to sum of the squares of the first ten natural numbers (1 to 10) in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {

        int sum = 0;
     
        for (int i = 0; i < 11; i++) {
            sum = sum + (i * i);
        }
     
        System.out.println(sum); 
    }
}
  
  
  
/*
run:
  
385
  
*/
        

 



answered Oct 18, 2023 by avibootz

Related questions

1 answer 118 views
1 answer 128 views
1 answer 134 views
1 answer 78 views
2 answers 178 views
...