This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class NumberOfDaysInMonth { | |
| public static boolean isLeapYear(int year){ | |
| boolean isLeapYear = false; | |
| if (year < 1 || year > 9999){ | |
| return false; | |
| } | |
| if (year % 4 == 0){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """A short program using user input in an interactive loop""" | |
| q = False | |
| while not q: | |
| user_quit = input('Quit?(y/n): ') | |
| if user_quit == 'y': | |
| q = True |
NewerOlder