新しいアカウントで始めました。

身の回りの出来事や写真が中心です。

javaで遊んでました。No6.演習4の19

2016-11-10 00:57:13 | 温泉

// 入力された月の季節を表示
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);
    }
}

この記事についてブログを書く
  • X
  • Facebookでシェアする
  • はてなブックマークに追加する
  • LINEでシェアする
« javaで遊んでました。No5. | トップ | カルディの福袋は買いますか? »
最新の画像もっと見る

温泉」カテゴリの最新記事