class InfoWeather {
static int month;
static int day;
static String sky;
}
class DateInfo{
public static void main(String args[]){
InfoWeather.month = 8;
InfoWeather.day = 10;
InfoWeather.sky = "雨";
System.out.println(InfoWeather.month + "月" + InfoWeather.day + "日 " + InfoWeather.sky);
}
}
とこのように入れて実行したのですが、ターミナルにクラスにmain(String[])メソッドが見つかりません :InfoWeatherと書かれていてどこを直せばいいのかわからないので返信お願いします!
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/14 07:40
退会済みユーザー
2020/05/14 08:19