Computer Applications
Write a program in Java to find the sum of the given series:
1 + 4 + 9 + …… + 400
Java
Java Iterative Stmts
93 Likes
Answer
public class KboatSeries
{
public static void main(String args[]) {
int sum = 0;
for (int i = 1; i <= 20; i++)
sum += (i*i);
System.out.println("Sum = " + sum);
}
}
Variable Description Table
Program Explanation
Output
Answered By
35 Likes
Related Questions
Write a program in Java to find the sum of the given series:
1 + (1/2) + (1/3) + …… + (1/20)
Write a program to display all the 'Buzz Numbers' between p and q (where p<q). A 'Buzz Number' is the number which ends with 7 or is divisible by 7.
Write a program to input marks in English, Maths and Science of 40 students who have passed ICSE Examination 2014. Now, perform the following tasks:
(a) Number of students, who have secured 95% or more in all the subjects.
(b) Number of students, who have secured 90% or more in English, Maths and Science.
Write a program in Java to find the sum of the given series:
1 + (1/3) + (1/5) + …… + (1/19)