Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*This program finds whether given no. is Armstrong or not.
- Example :
- Input - 153
- Output - 1^3 + 5^3 + 3^3 = 153, so it is Armstrong no. */
- import java.util.Scanner;
- class Armstrong
- {
- public static void main(String args[]){
- Scanner sc=new Scanner(System.in);
- int num = sc.nextInt();
- int tmp = num; //use to check at last time
- int check=0,remainder;
- while(num > 0)
- {
- remainder = num % 10;
- check = check + (int)Math.pow(remainder,3);
- num = num / 10;
- }
- if(check == n)
- System.out.println(n+" is an Armstrong Number");
- else
- System.out.println(n+" is not a Armstrong Number");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment