हिंदी

Write a program by using a class with the following specifications:  Class name: Factorial Data Members: private int n Member Methods: void input(): to input a number - Computer Applications

Advertisements
Advertisements

प्रश्न

Write a program by using a class with the following specifications: 

Class name: Factorial
Data Members: private int n
Member Methods:
void input(): to input a number
void fact(): to find and print the factorial of the number.

Use a main function to create an object and call member methods of the class. 

कोड लेखन

उत्तर

import java.util.*;
class Factorial
{ private int n;
void input)
{Scanner ob = new Scanner(System.in);
System.out.println("Enter a number");
n = ob.nextInt();
}
void fact()
{int fct = 1;
for (int i = 1; i <= n; i++)
fct = fct * i;
System.out.println("Factorial: " + fct);
}
public static void main(String jK[])
{ Factorial F = new Factorial();
F.input();
F.fact();
}}
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 8: Encapsulation and Inheritance - EXERCISES [पृष्ठ ४४७]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 8 Encapsulation and Inheritance
EXERCISES | Q VI. 2. | पृष्ठ ४४७
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×