// 入力された月の季節を表示
import java.util.Scanner;
public class Ensyu4_19 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO 自動生成されたメソッド・スタブ
Scanner stdIn = new Scanner(System.in);
int retry; // もう一度?
int month;
do {
do {
System.out.print("季節を求めます。\n何月ですか:");
month = stdIn.nextInt();
}while(month < 1 || month > 12);
if (month >= 3 && month <= 5) // 3月・4月・5月
System.out.println("それは春です。");
else if (month >= 6 && month <= 8) // 6月・7月・8月
System.out.println("それは夏です。");
else if (month >= 9 && month <= 11) // 9月・10月・11月
System.out.println("それは秋です。");
else if (month == 12 || month == 1 || month == 2)// 12月・1月・2月
System.out.println("それは冬です。");
System.out.print("もう一度? 1…Yes/0…No:");
retry = stdIn.nextInt();
} while (retry == 1);
}
}
最新の画像[もっと見る]
- 久しぶの訪問リハビリでした! 10時間前
- 久しぶの訪問リハビリでした! 10時間前
- 久しぶの訪問リハビリでした! 10時間前
- 久しぶの訪問リハビリでした! 10時間前
- 久しぶの訪問リハビリでした! 10時間前
- 昨日は良い天気でした! 1週間前
- 昨日は良い天気でした! 1週間前
- 暫く鬱で、書き込みしてませんでした? 2週間前
- 暫く鬱で、書き込みしてませんでした? 2週間前
- 暫く鬱で、書き込みしてませんでした? 2週間前