用Java语言如何做一个九九乘法表

 我来答
百度网友a796c4d
推荐于2016-05-27 · TA获得超过298个赞
知道小有建树答主
回答量:317
采纳率:33%
帮助的人:164万
展开全部
public class Test{
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+"="+(x*y)+"\t");
}
System.out.println();
}
}
}
而庅没页65
2015-09-16 · TA获得超过876个赞
知道小有建树答主
回答量:295
采纳率:100%
帮助的人:141万
展开全部
public class Hello {
public static void main(String args[]) {
for(int x = 1 ; x <= 9 ; x ++) {
for(int y = 1 ; y <= x ; y ++) {
System.out.print(x + "*" + y + "=" + x * y + "\t") ;
}
System.out.println();//换行
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
hjmjhj01
2015-10-12 · 超过11用户采纳过TA的回答
知道答主
回答量:56
采纳率:0%
帮助的人:20.6万
展开全部
public class Test{

public static void main(String [] args){
for(int x=1;x<10;x++){
for(int y=1;y<=x;y++){
System.out.print(y+"*"+x+"="+x*y+" ");

}
System.out.println();
}

}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
二康芒611
推荐于2016-09-07 · TA获得超过127个赞
知道答主
回答量:123
采纳率:0%
帮助的人:125万
展开全部
class NineMNine { public static void main(String args[]) { outer: for(int i=1;i<10;i++) { for(int j=1;j<10;j++) { if(j>i) { System.out.println(" "); continue outer; } System.out.print(" "+i+"*"+j+"="+(i*j)); } } } }
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式