このコードが機能しません...理由がわかりません。
このチュートリアルhttp://www.youtube.com/watch?v=meKpmuUI0ds&feature=relatedと同じコードです。
コードはこの男が実行すると機能しますが、次の 2 つのエラーが発生します。
Test.java:4: シンボル symbol を見つけることができません: クラス decimalFormat
場所: クラス Test
decimalFormat decFor = new decimalFormat("0.00");
^
Test.java:4: シンボルが見つかりません
シンボル: クラス decimalFormat
場所: クラス Test
decimalFormat decFor = new decimalFormat("0.00"); ^
2 エラー。
これが私のコードです:
public class Test {
public static void main(String[] args) {
decimalFormat decFor = new decimalFormat("0.00");
double money = 15.9;
double mula = 36.6789;
double product = money * mula;
System.out.println(decFor.format(product));
}
}