阿姆斯特朗数_Java中的阿姆斯特朗编号程序

阿姆斯特朗数

Armstrong number is a n digit number such that the sum of digits raised to the power n is equal to the number.

阿姆斯壮数字是一个数字,使得加到幂n的数字之和等于该数字。

For example:

例如:

153 is armstrong number because here n=3 and 13+53+33=153.

153是阿姆斯壮数,因为这里n = 3和13 + 53 + 33 = 153。

120 is not armstrong number because 13+23+03!=120.

120不是阿姆斯壮数字,因为13 + 23 + 03!= 120。

Below I have shared a Java program that checks whether a number is armstrong number or not.

在下面,我共享了一个Java程序,该程序检查数字是否为armstrong数字。

Java中的阿姆斯特朗编号程序 (Program for Armstrong Number in Java)

import java.util.Scanner; //import Scanner class for reading from keyboard
 
class ArmstrongNumberExample
{
	public static void main(String...s)
	{
		Scanner sc=new Scanner(System.in);
		int num,len,sum=0,temp,rem;
		
		System.out.println("Enter a number:");
		num=sc.nextInt();
		temp=num;
	
		len=String.valueOf(num).length();
		
		while(temp!=0)
		{
			rem=temp%10;
			sum+=(int)Math.pow(rem,len);
			temp/=10;
		}
 
		if(sum==num)
			System.out.println("Armstrong Number");
		else
			System.out.println("Not Armstrong Number");
	}
}

Output

输出量

Program for Armstrong Number in Java

翻译自: https://www.thecrazyprogrammer.com/2015/08/program-for-armstrong-number-in-java.html

阿姆斯特朗数

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值