32) Write a program to input a number and
check whether it is Deficient Number
or not? (8=1+2+4=7, sum<number)
import java.util.*;public class Deficient_number{public static void main(String args[ ]){Scanner sc = new Scanner (System.in);System.out.println("Enter a number");int a = sc.nextInt();int s = 0;for(int i=1;i<a;i++){if(a%i==0)s=s+i;}if(s<a){System.out.println("Entered number is a DEFICIENT number");}else{System.out.println("Entered number is not a DEFICIENT number");}}}
No comments:
Post a Comment
if you have any doubts, Please let me know.
Your Truly
Shashank Porwal