मराठी

Write a program to display all Pronic numbers in the range from 1 to n. Hint: A Pronic number is a number which is the product of two consecutive numbers in the form of n* (n + 1). - Computer Applications

Advertisements
Advertisements

प्रश्न

Write a program to display all Pronic numbers in the range from 1 to n.

Hint: A Pronic number is a number which is the product of two consecutive numbers in the form of n* (n + 1). 

For example,
2, 6, 12, 20, 30, ................... are Pronic numbers. 

थोडक्यात उत्तर

उत्तर

import java.util.Scanner;

public class Q16
{
    public static void main(String args[])  {
        Scanner in = new Scanner(System.in);
        System.out.print("Enter the number: ");
        int n = in.nextInt();
        
        System.out.println("Pronic numbers from 1 to " + n + " : ");
        
        for (int i = 1; i <= n; i++) {
            for(int j = 1; j <= i-1; j++) {
                if (j * (j + 1) == i) { 
                    System.out.print(i + " ");
                    break;
                }
            }
        }
    }
}
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.09: Iterative Constructs in Java - EXERCISES [पृष्ठ १२६]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 1.09 Iterative Constructs in Java
EXERCISES | Q VI. 16. | पृष्ठ १२६
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×