A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 落叶随心飞   /  2015-4-19 21:39  /  10134 人查看  /  45 人回复  /   1 人收藏 转载请遵从CC协议 禁止商业使用本文

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+"="+y*x+"\t");

                }
                System.out.println();
        }
回复 使用道具 举报
看视屏,这问题还问!!!
回复 使用道具 举报
打印(9*9)乘法表用的循环做的,代码如下(省落主方法直接写代码快你应该能看得懂吧)
  1. for(int i=1;i<9;i++){
  2.     for(int j=1;j<=i;j++){
  3.        System.out.print(j+"*"+i+"="+(i*j)+"\t");
  4.   }
  5.    System.out.println();
  6. }
复制代码
回复 使用道具 举报
本帖最后由 Dana-乌拉拉 于 2015-4-23 22:35 编辑

class Print99Table {                            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+" = "+i*j+"\t");                     
           }                       
    System.out.println();               
     }     
    }
  }

回复 使用道具 举报
本帖最后由 陈明佳 于 2015-4-23 22:52 编辑

class Demo
{
          public static void main(String[] args)
          {
                abc(9)
          }
          public static void abc(int v)
         {
                  for(int x=1;x<=v;x++)
                   {
                                for(int y =1;y<=x;y++)
                                     {
                                                       System.out.print(y+"*"+x+"="+y*x+"\t");
                                     }
                                    System.out.println("");
                     }
             }

}
回复 使用道具 举报
  1. import java.util.Scanner;
  2. class NineNineBiao
  3. {
  4.         public static void main(String[] args)
  5.         {
  6.                 for(;;){
  7.                 Scanner sc=new Scanner(System.in);
  8.                 System.out.print("请输入想要打印的表:");
  9.                 int temp =sc.nextInt();
  10.                 Chengfabiao(temp);}

  11.         }

  12.         public static void Chengfabiao(int temp)
  13.         {
  14.                 for (int x = 1;x <= temp ; x++)
  15.                 {
  16.                         for (int y= 1;y<=x ;y++ )
  17.                         {
  18.                                 System.out.print(y+"*"+x+"="+y*x+"\t");
  19.                         }
  20.                 System.out.println();
  21.                 }
  22.         }
  23. }
复制代码

QQ截图20150424004725.png (119.41 KB, 下载次数: 28)

QQ截图20150424004725.png
回复 使用道具 举报
123
您需要登录后才可以回帖 登录 | 加入黑马