我不知道如何调用该方法

1.写一个静态布尔方法 - 一个返回布尔值的方法 - 接受一个int参数并将整数0和1分别转换为false和true。 包含一个main()方法来测试布尔方法。

我的代码:

public class Assignment2task1
{
   public static boolean isPrime (int N)

   {

      if (N <= 0)return false;
      System.out.println ("you entered 0 which evaluates to false");
      for (int i = 1; i<=N/i; i++)
      if (N>=1)return true;
      System.out.println ("you entered 1 which evaluates to true");

      return true;  

   }
}

import java.util.Scanner;

public class TestBoolean
{

    public static void main(String[] args) 
    {
        Scanner input = new Scanner(System.in);
        int  N;
        boolean Evaluate;


        System.out.println("enter the first number :");
        N = input.nextInt();

        Evaluate = Assignment2task1.boolean isPrime (N);
    }

}

您只需使用类名即可调用isPrime()方法。 由于它是一种static方法,因此您需要使用类名来调用它。 此外,您不应该与它一起返回类型或调用任何其他方法。

Evaluate = Assignment2task1.isPrime(N); // ClassName.staticMethod();
链接地址: http://www.djcxy.com/p/15203.html

上一篇: i don know how to calling the method

下一篇: (int) Math.sqrt(n) much slower than (int) Math.floor(Math.sqrt(n))