Sabtu, 01 November 2014

Java program to check armstrong number

This java program checks if a number is armstrong or not.

import java.util.*; 
class ArmstrongNumber
{
public static void main(String args[])
{
int n, sum = 0, temp, r;

Scanner in = new Scanner(System.in);
System.out.println("Enter a number to check if it is an armstrong number");
n = in.nextInt();

temp = n;

while( temp != 0 )
{
r = temp%10;
sum = sum + r*r*r;
temp = temp/10;
}

if ( n == sum )
System.out.println("Entered number is an armstrong number.");
else
System.out.println("Entered number is not an armstrong number.");
}
}

Java program to check armstrong number


Hope we are able to explain you jJava program to check armstrong number, if you have any questions or suggestions please write to us using contact us form.(Second Menu from top left).

Please share us on social media if you like the tutorial.

Source:http://www.tutorialsdesk.com/2014/08/java-program-to-check-armstrong-number.html

Tidak ada komentar:

Posting Komentar