JAVA:用for语句编写 乘法口诀表

如题所述

public class Test99{
public static void main(String []args ){
for(int i=1;i<=9;i++){ //第一个for循环
for(int j=1;j<=i;j++){ //第二个for循环
System.out.print(i+"*"+j+"="+(i*j)+"\t"); //最后输出
}
System.out.println();
}
}
}追问

你把第二个for语句j<=i还有最后那个输出语句加下注释 谢谢

追答

你运行一下就明白了

追问

只出结果不知道为什么这么写是没用的 麻烦你写一下

温馨提示:内容为网友见解,仅供参考
无其他回答

用Java中的for循环编写九九乘法表 要求:1)输出形式为三角形 2)代码整洁...
printf是c语言里面的,就是相当于你的System.out.print();printf("\\n");===System.out.println();下面是java中九九乘法的代码:class 乘法口诀 { public static void main(String[] args){ int i,j,k;for(i=1;i<10;i++){ for(j=1;j<=i;j++){ System.out.print(j+"*"+...

用JAVA如何编写右上角99乘法口诀,左上角的别来了!!
public class AAA { public static void main(String[] args) { \/\/右下角 for(int i=1;i<=9;i++){ for(int j=i;j<9;j++){ System.out.print("\\t");} int k=10-i;for(int j=1;j<=i;j++){ System.out.print(i+"*"+k+"="+i*k+"\\t");k++;} System.out.println...

Java 编辑乘法口诀表,求解
public static void main(String[]args) { for(int x = 1 ; x <= 9 ; x++) { for(int y = 1 ; y <= x ; y++) { System.out.print(y + "*" + x + "=" + (y * x) + "\\t") ;} System.out.println() ;} } } ...

...实现输入一个数,显示出乘法口诀表的形式。比如输入1,显示出1*1...
import java.util.Scanner;public class Demo001 {static void Add(int n){ int s=1; for(int i=1;i<=n;i++){ for (int j=1;j<=i;j++){ s=i*j; if(s<10){ \/\/用于乘法表的对齐 System.out.print(j+"*"+i+"="+s+" "); } else System....

JAVA 乘法口诀表
public static void main(String[] args) {for(int i=9;i>0;i--) {for (int j = 1; j <= i; j++) { \/\/j<=i是确保列小于或等于行数System.out.print(i + "x" + j + "=" + i * j+'\\t'); \/\/'\\t'的意思是强制水平制表}System.out.println(); \/\/这一行的...

java编写99乘法表,数组排序,魔方矩阵
\/\/ 9*9乘法口诀表 public static void main(String[] args) { for(int i=1; i<10; i++){ for(int j=1; j<=i; j++){ System.out.print(j + "*" + i + "=" + j*i + "\\t");} System.out.println();} } \/\/---结果 1*1=1 1*2=22*2=4 1*3=32*3=63*3=...

怎样编辑一个“九九乘法口诀表”的JSP
这是JAVA中的 public class C9{ public static void main(String args[]){ int result=0;for(int i=1;i<=9;i++){ for(int j=1;j<=i;j++){ result=i*j;System.out.print(j+"*"+i+"="+result+'\\t');} System.out.println();} } } ...

java 输出乘法口诀表
1*1=1 2*1=2 3*1=3 4*1=4 5*1=5 6*1=6 7*1=7 8*1=8 9*1=91*2=2 2*2=4 3*2=6 4*2=8 5*2=10 6*2=12 7*2=14 8*2=16 9*2=18 1*3=3 2*3=6 3*3=9 4*3=12 5*3=15 6*3=18 7*3=21 8*3=24 9*3=27 1*4=4 2*4=8 3*4=12...

1.编写一个输出九九乘法口诀表的程序。 2.设计一个学生类,其中包含学 ...
include"stdio.h"int main(){ int i,j;for(i=1;i<=9;i++){ for(j=1;j<=i;i++)printf("%d*%d=%2d",i,j,i*j);printf("\\n");} return 0;}

乘法口诀表,java,怎么使每一列的开头对齐?
'\\t'tab键的位置'\\r'回车'\\n'换行*\/class ForForDemo3 {public static void main(String[] args) {for(int x=0; x<9; x++) {for(int y=0; y<=x; y++) {System.out.print("*");}System.out.println();}System.out.println("---");\/\/为了使用数据,我们从1开始for(int x...

相似回答