import java.util.*;
public class Main{
public static void main (String[] args) throws Exception {
Scanner sc = new Scanner(System.in); System.out.println("生年月日を入力してください"); int year = sc.nextInt(); //生まれた年を入力 int month = sc.nextInt(); //生まれた月を入力 int day = sc.nextInt(); //生まれた日を入力 System.out.println("現在の年を入力してください。"); int now = sc.nextInt(); //現在の年齢を入力 int age = sc.nextInt(); System.out.println("私は" + year + month + day + "生まれです"); System.out.println("現在、" + now + "年です。"); System.out.println("私は" + now + "で" + age + "才です。"); }
}
このコードをコンパイルすると「クラス Mainはpublicであり、ファイルMain.javaで宣言する必要があります
public class Main{」と出てしまい、うまくコンパイルできません。例題として残しておいたScannerを使ったコードも同様の問題が発生してしまいうまくコンパイルできません。Scannerとintを使ったコードをネットで調べても何が違うかわかりませんでした。どうか教えてください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/17 14:23