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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class  DemoTest
{
        public static void main(String[] args)
        {

                System.out.println(Demo.add(4,5));
                System.out.println(Demo.same(4,5));
                Demo.chengfa();
        }
}
  class Demo{


   public  static int add( int a,int b){
   

     return a+b;
    }

   public   static boolean same ( int a,int b){
         if (a==b)
         {
                         return true;
         }
      return false;

   }
   public  static void chengfa(){
         for (int i = 1;i <= 9;i++ )
         {
                 for (int j = 1;j <=i;j++ )
                 {
                         System.out.print(i+"*"+j+"="+i*j+'\t');
                 }
                 System.out.println();
         }

  }
  }



2 个回复

倒序浏览
这是最简单的建立一个类,里面定义了几个静态方法,用类名.方法名调用
回复 使用道具 举报
哈哈哈哈哈!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马