| Title | Topics | Action | |||
|---|---|---|---|---|---|
| 79 | Even or OddRead an integer and print 'Even' if it is even, otherwise 'Odd'.... | easy | ○ Not Started | If Statements | Solve |
| 80 | Positive, Negative, or ZeroRead an integer and print 'Positive', 'Negative', or 'Zero' using an if / else i... | easy | ○ Not Started | If Statements | Solve |
| 81 | Larger of TwoRead two integers (each on its own line) and print the larger one.... | easy | ○ Not Started | If Statements | Solve |
| 82 | Smaller of TwoRead two integers (each on its own line) and print the smaller one.... | easy | ○ Not Started | If Statements | Solve |
| 83 | Adult or MinorRead an age. If it is 18 or more, print 'Adult', otherwise 'Minor'.... | easy | ○ Not Started | If Statements | Solve |
| 84 | Pass or FailRead a score. If it is 60 or higher, print 'Pass', otherwise 'Fail'.... | easy | ○ Not Started | If Statements | Solve |
| 85 | Equal or Not EqualRead two integers (each on its own line). Print 'Equal' if they are equal, other... | easy | ○ Not Started | If Statements | Solve |
| 86 | Voting EligibilityRead an age. If it is 18 or older, print 'Can vote', otherwise 'Cannot vote'.... | easy | ○ Not Started | If Statements | Solve |
| 87 | Multiple of 3Read an integer. Print 'Yes' if it is a multiple of 3, otherwise 'No'.... | easy | ○ Not Started | If Statements | Solve |
| 88 | In Range 1 to 100Read an integer. Using `&&`, print 'In range' if it is between 1 and 100 inclusi... | easy | ○ Not Started | If Statements | Solve |
| 89 | Hot or NotRead a temperature (an integer). If it is 30 or higher, print 'Hot', otherwise '... | easy | ○ Not Started | If Statements | Solve |
| 90 | Vowel or NotRead a single lowercase letter. Print 'Vowel' if it is a vowel (a, e, i, o, u), ... | easy | ○ Not Started | If Statements | Solve |
| 91 | Divisible by 5Read an integer. Print 'Divisible by 5' if it is divisible by 5, otherwise 'Not ... | easy | ○ Not Started | If Statements | Solve |
| 92 | Is It ZeroRead an integer. Print 'Zero' if it equals 0, otherwise 'Not zero'.... | easy | ○ Not Started | If Statements | Solve |
| 93 | Both EvenRead two integers (each on its own line). Using `&&`, print 'Both even' if BOTH ... | easy | ○ Not Started | If Statements | Solve |
| 94 | Affordable or NotRead a price (an integer). If it is 100 or less, print 'Affordable', otherwise '... | easy | ○ Not Started | If Statements | Solve |
| 95 | Letter GradeRead a test score (0-100) and print the letter grade with an if / else if chain:... | medium | ○ Not Started | If Statements | Solve |
| 96 | Largest of ThreeRead three integers (each on its own line) and print the largest.... | medium | ○ Not Started | If Statements | Solve |
| 97 | Leap YearRead a year. Print 'Leap year' if it is a leap year, otherwise 'Not a leap year'... | medium | ○ Not Started | If Statements | Solve |
| 98 | FizzBuzz for One NumberRead an integer. Print 'FizzBuzz' if divisible by both 3 and 5, 'Fizz' if only b... | medium | ○ Not Started | If Statements | Solve |
| 99 | Quadrant FinderRead two integers x and y (each on its own line). Print the quadrant: 'Quadrant ... | medium | ○ Not Started | If Statements | Solve |
| 100 | Ticket Price by AgeRead an age and print the category: under 5 → 'Free', 5-17 → 'Child', 18-64 → 'A... | medium | ○ Not Started | If Statements | Solve |
| 101 | Day Name with switchRead a day number from 1 to 7 and print its name using a `switch` statement: 1 →... | medium | ○ Not Started | If Statements | Solve |
| 102 | Weekday or WeekendRead a day number from 1 to 7 (1 = Monday ... 7 = Sunday). Print 'Weekend' for 6... | medium | ○ Not Started | If Statements | Solve |
| 103 | Sign with a switch ExpressionRead an integer and print 'positive', 'negative', or 'zero' using a C# `switch` ... | medium | ○ Not Started | If Statements | Solve |