黑马程序员技术交流社区

标题: 新手模块,写个小程序,大家来指正下 [打印本页]

作者: 胡俊焰    时间: 2015-7-9 21:19
标题: 新手模块,写个小程序,大家来指正下
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();
         }

  }
  }




作者: 孟卫严    时间: 2015-7-9 21:52
这是最简单的建立一个类,里面定义了几个静态方法,用类名.方法名调用
作者: 双元王志超    时间: 2015-7-12 09:46
哈哈哈哈哈!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2