-1

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");

    }
}
4

3 に答える 3

12

IfIJavaには大きな上限はありません。そうする必要がありますif

于 2012-08-10T15:32:06.930 に答える
6

if (cantim == 'F')小さいはずですi

また

メソッドを書く必要があります

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

"if"しかし、あなたのコードに基づいて、あなたは新しいメソッドを持つよりもステートメントを探しているようです。

于 2012-08-10T15:31:51.317 に答える
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");
}
于 2012-08-10T15:44:33.433 に答える