按一下代码执行:
public class woo {
public static void main(String args[]) {
System.out.println("100-1000中的水仙花数有:")
for(int i=100i<1000i++){
int single = i%10
int ten = i/10%10
int hundred = i/10/10%10
//水仙花数判断要求
if(i == (single*single*single+ten*ten*ten+hundred*hundred*hundred)){
System.out.println(i)
}
}
}
}
扩展资料:
水仙花数只是自幂数的一种,严格来说3位数的3次幂数才称为水仙花数。
一位自幂数:独身数
两位自幂数:没有
三位自幂数:水仙花数
四位自幂数:四叶玫瑰数
五位自幂数:五角星数
六位自幂数:六合数
七位自幂数:北斗七星数
八位自幂数:八仙数
九位自幂数:九九重阳数
十位自幂数:十全十美数
参考资料:
水仙花数——百度百科
法一:import java.awt.*import java.applet.*
import java.math.*
public class Shuixianhua extends Applet {
public void init() {
}
public void paint(Graphics g) {
//定义相关变量
int elem[]=new int[4]
int num,temp
double total
int row=20,column=30
int count=0,k
g.drawString("4位的水仙花数如下所示:", 20, 30 )
//利用循环寻找1000到10000之间的水仙花数
for(num=1000num<10000num++)
{
k=0
temp=num
//提取num中的千位,百位,十位,个位,存储在整型数组elem[4]中
do
{ elem[k]=temp%10
temp=temp/10
k++
}while(!(temp==0))
total=Math.pow(elem[0],4)+Math.pow(elem[1],4)+Math.pow(elem[2],4)+Math.pow(elem[3],4)
//判断是否未水仙花数
if(total==num)
{
count++
//输出格式控制
if(count%8==0)
{
row=row+25
}
else
{
column=column+30
}
g.drawString(num+"是水仙花数",row,column)
}
column=column+30
g.drawString("共"+count+"个",row,column)
}
}
法二:public class Sxhs{
public static void main(String[] agrs){
int a1 , a2 , a3
for(int i=1000 i<10000 i++){
a1 = i / 1000
a2=(i-a1*1000)/100
a3=i-a1*1000-a2*100
if(i==(a1*a1*a1)+(a2*a2*a2)+(a3*a3*a3)){
System.out.println("shi : " + i)
}
}
}
}
法三:public class shuixianhua{
public static void main(String[] agrs){
int a1 , a2 , a3,a4
for(int i=1000 i<10000 i++){
a1 = i / 1000
a2=(i-a1*1000)/100
a3=(i-a1*1000-a2*100)/10
a4=i-a1*1000-a2*100-a3*10
if(i==(a1*a1*a1*a1)+(a2*a2*a2*a2)+(a3*a3*a3*a3)+(a4*a4*a4*a4)){
System.out.println("shi : " + i)
System.out.println(a1)
System.out.println(a2)
System.out.println(a3)
System.out.println(a4)
}
}
}
}
法四:public class Suixian {
public static void main(String[] args) throws java.io.IOException {
byte[] buf = new byte[20]
int cmdLength = System.in.read(buf)
String str = new String(buf,0,cmdLength-2)
int n = Integer.parseInt(str)//这里当然是输入一个位数罗,也不一定就三位吧
int low = 1,high = 1
for (int i=1i<ni++) low = low*10
high = low * 10
//System.out.println(low)
//System.out.println(high)
for (int i=lowi<highi++)
{
int sum = 0
int p = i
while (p!=0)
{
int r = p%10
p = p/10
int rn = 1
for (int j=1j<=nj++) rn = rn * r
sum = sum + rn
}
if (sum==i) System.out.println
}
}
}
不过这只是法一的一个化简,(法一用了一个数组)
第二个方法是这样,拿三未数举例
public class SuiXian2 {
public static void main(String[] args) {
for (int a=1a<=9a++)
for (int b=0b<=9b++)
for (int c=0c<=9c++)
if(a*a*a+b*b*b+c*c*c==100*a+10*b+c)
System.out.println(100*a+10*b+c)
}
}
public class Daffodil {/**
*
* @param
* @return void
* @param args
*desc
*/
public static void main(String[] args) {
for (int n = 100n <999n++) {
int a = n / 100
int b = (n % 100) / 10
int c = n % 10
if(Math.pow(a, 3)+Math.pow(b,3)+Math.pow(c,3)==n){
System.out.println(n)
}
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)