about | help | code help+videos | done | prefs |
public boolean isSunnmerOrWinterMonth(int month)
public boolean isSummerOrWinterMonth(int month) { boolean summerMonth = false; if (6 <= month && month <= 9) { summerMonth = true; } boolean winterMonth = false; if ( month == 12 || (1 <= month && month <= 3) ) { winterMonth = true; } boolean summerOrWinterMonth = false; if (summerMonth || winterMonth) { summerOrWinterMonth = true; } return summerOrWinterMonth; } isSummerOrWinterMonth(1) → true isSummerOrWinterMonth(2) → true isSummerOrWinterMonth(3) → true ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 1
Copyright Nick Parlante 2017 - privacy