English

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 = 4Therefore, Sum = 42 = 16 - Computer Applications

Advertisements
Advertisements

Question

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. 1 + 3 + 5 + .......... + 29 + 31
  2. 1 + 3 + 5 + 7 + .......... + 47 + 49
Answer in Brief

Solution

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
  Is there an error in this question or solution?
Chapter 1.07: Mathematical Library Methods - EXERCISES [Page 81]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.07 Mathematical Library Methods
EXERCISES | Q VI. 7. | Page 81
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×