使用java中的for语句循环,在控制台上输出如下内容

12345678924681012141618369121518212417456789*****************************************... 1 2 3 4 5 6 7 8 9
2 4 6 8 10 12 14 16 18
3 6 9 12 15 18 21 24 17
4
5
6
7
8
9*********************************************81
展开
 我来答
乌微月2S
2012-12-02 · TA获得超过5037个赞
知道大有可为答主
回答量:5361
采纳率:42%
帮助的人:2903万
展开全部
9*9循环啊
for(int i=1;i<10;i++){
for(int j=1;j<10;j++){
System.out.print(i*j);

}

System.out.println("");

}
百度网友1bd00c8
2012-12-02 · TA获得超过1.4万个赞
知道大有可为答主
回答量:7357
采纳率:33%
帮助的人:3109万
展开全部
for(i=1;i<=9;i++){
for(j=1;j<=9;j++){
System.out.print(i*j);
}

System.out.print("");

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
竹月缘
2012-12-02 · TA获得超过173个赞
知道小有建树答主
回答量:380
采纳率:0%
帮助的人:179万
展开全部
这个你看看:

public class RecPrint
{
public static void main(String args[])
{
for(int i=1,temp;i<=9;i++)
{
temp=i;
System.out.print(temp+"");
for(int j=1;j<9;j++)
{
temp+=i;
System.out.print(temp+"");
}
System.out.println("");
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
java_海贼王
推荐于2017-09-30
知道答主
回答量:11
采纳率:0%
帮助的人:4.1万
展开全部
package corejava.day06;
public class Test1 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
for(int i =1;i<10;i++){
for(int j=1;j<10;j++){
System.out.print(i*j+" ");
}
System.out.println(" ");
}
}
}
双重for循环
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
fly威尔史密斯
2012-12-06
知道答主
回答量:47
采纳率:0%
帮助的人:14.1万
展开全部
他们胡扯,每行用循环做一个算法就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式