看看下面代码:
public class T{
public static void main(String []args){
for(int i=1000;i<9999;i++){
int a=i%10;//个位
int b=i/10%10;//十位
int c=i/100%10;//百位
int d=i/1000;//千位
if(Math.pow(a, 4)+Math.pow(b, 4)+Math.pow(c, 4)+Math.pow(d, 4)==i)
System.out.println(i);
}
}
}
有问题就追问,满意请采纳!
public class n {
public static void main(String[] args) {
for(int i=1;i<=9;i++){
for(int j=1;j<=i;j++){
System.out.print(j+"*"+i+"="+i*j+" ");
if(j==i){
System.out.println("");
}
}
}
}
}
/*
九九乘法口诀表
*/
public class Test
{
public static void main(String[] args)
{
int num = 9 ;
for (int i = 1; i <= num ; i++ )
{
for (int j = 1; j <= i ; j++ )
{
System.out.print(j+"*"+i+"="+j*i+"\t") ;
// \t 控制对齐的,不然不好看,这句很重要,很多人想不到这点
}
System.out.println() ;
}
}
}
package X_JAVA;
public class X_class1{
public static void main(String args[]){
int i,j,k;
for (i=1;i<=9;i++)
{
for (j=1;j<=i;j++)
{
k=i*j;
System.out.print(j+"*"+i+"="+k+" ");
}
System.out.println();
}
}
}