方法If(boolean)未定义类型

时间:2012-08-10 15:31:15

标签: java if-statement syntax-error

Eclipse不断给我以下错误:

Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
input cannot be resolved
The method If(boolean) is undefined for the type bai1DinhLuatCuLong
Syntax error, insert ";" to complete Statement
F cannot be resolved to a variable

我不明白这一点。我需要修理什么?为什么我不能使用If()函数?

我试过浏览Google和Bing,我已经仔细检查了我的Java示例书,但我无法解决这个问题。

import java.util.Scanner;


public class bai1DinhLuatCuLong
{
    public static void main(String[] args)
    { 
    System.out.print("Giá trì cần tìm (F // q // r) : ");   
    char cantim = input.nextChar();

            // HERE THIS IS WHERE I PUT THE IF STATEMENT !!!
    If (cantim == 'F') {

        Scanner input = new Scanner(System.in); 
        System.out.print("Độ lớn của điện tích thứ nhất : ");
        double q1 = input.nextDouble();
        System.out.print("Độ lớn của điện tích thứ hai : ");
        double q2 = input.nextDouble();
        System.out.print("Khoảng cách giữa 2 điện tích : ");
        double r = input.nextDouble();
        System.out.print("Hệ số k sẽ tự động được đặt là 9*10^9 như trong hệ SI");
        double F = 9 * Math.pow(10,9) * Math.abs(q1) * Math.abs(q2) / Math.pow(r,2);
    }

    System.out.print("Độ lớn lực tương tác giữa 2 điện tích điểm : " + "\n Lưu ý E là *10");

    }
}

3 个答案:

答案 0 :(得分:12)

If在java中没有大的上限I:它应该是if

答案 1 :(得分:6)

if (cantim == 'F')它应该是小 i

你需要写一个方法

public boolean If(boolean test)
{
//Your logic.
}

但是,根据您的代码,您似乎在寻找"if"语句,而不是使用新方法。

答案 2 :(得分:0)

也许你想做这样的事情:

Scanner input = new Scanner(System.in);
String cantim = input.next();

if (cantim.equals("F")) {
    System.out.println("If F");
} else {
    System.out.println("Out of F");
}