使用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 展开
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 展开
5个回答
展开全部
for(i=1;i<=9;i++){
for(j=1;j<=9;j++){
System.out.print(i*j);
}
System.out.print("");
}
for(j=1;j<=9;j++){
System.out.print(i*j);
}
System.out.print("");
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个你看看:
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("");
}
}
}
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("");
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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循环
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循环
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
他们胡扯,每行用循环做一个算法就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询