Advertisements
Advertisements
प्रश्न
The sum of first n odd natural numbers can be calculated as n2, where n is the number of odd natural.
For example,
Sum = 1 + 3 + 5 + 7; number of odd natural = 4
Therefore, Sum = 42 = 16
Write a program to input number of odd natural terms and display sum of the given series:
- 1 + 3 + 5 + .......... + 29 + 31
- 1 + 3 + 5 + 7 + .......... + 47 + 49
संक्षेप में उत्तर
उत्तर
import java.util.*;
public class KboatCalculateSum
{
public static void main(String args[])
{
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of odd natural terms: ");
int num = in.nextlnt();
System.out.println("Number of odd natural terms = " + num);
double sum = Math.pow(num, 2);
System.out.println("Sum = " + sum);
}
}
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?