java 99乘法口诀表 靠右输出
发布网友
发布时间:2022-04-29 18:56
我来回答
共5个回答
热心网友
时间:2022-06-20 01:08
public class m69Table{
public static void main(String[] args){
for(int i=1; i<10; i++){
String nbsp = "";
for(int k=i; k<9; k++){
nbsp +=" "; /**4个空格,为了对齐*/
}
for(int j=i; j>0; j--){
System.out.print(nbsp+i+"x"+j);
nbsp =" ";
}
System.out.println();
}
}
}
/** 总算是按照你的要求,没写判断语句…*/
热心网友
时间:2022-06-20 01:08
1x1
2x2 2x1
3x3 3x2 3x1
4x4 4x3 4x2 4x1
5x5 5x4 5x3 5x2 5x1
6x6 6x5 6x4 6x3 6x2 6x1
7x7 7x6 7x5 7x4 7x3 7x2 7x1
8x8 8x7 8x6 8x5 8x4 8x3 8x2 8x1
9x9 9x8 9x7 9x6 9x5 9x4 9x3 9x2 9x1
热心网友
时间:2022-06-20 01:09
public class KY2_11
{
public static void main(String args[])
{
int i=0,j=0;
int sq=0;
for(i=1;i<=9;i++)
{ for(j=1;j<=i;j++)
{ sq=i*j;
System.out.print(j+"*"+i+"="+sq+" ");
if(i==j)
{
System.out.println();
}
}
}
}
}
热心网友
时间:2022-06-20 01:09
class NineMultNine {
public static void main(String[] args){
for(int i=1;i<10;i++){
for(int k=1;k<10-i;k++)
System.out.print(" ");
for(int j=i;j>=1;j--) System.out.print(i+"X"+j+" ");
System.out.println();
}
}
}
热心网友
时间:2022-06-20 01:10
public class Sz{
public static void main(String args[])
{
int i=0,j=0;
int sq=0;
for(i=1;i<=9;i++)
{ for(j=i;j>=1;j--)
{ sq=i*j;
System.out.print(i+"x"+j+"="+sq+" ");
if(j==1)
{
System.out.println();
}
}
}
}
}
这是满足你的要求的