CJCoding With Joseph
TitleTopicsAction
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
302
Absolute ValueRead an integer `n` from input and print its absolute value (the non-negative ve...
easy○ Not Started
If Statements
Solve
303
Max with Ternary OperatorRead two integers `a` and `b`, each on its own line. Use the ternary operator `?...
easy○ Not Started
If Statements
Solve
304
Password Length CheckRead a password (a line of text) from input. If it has at least 8 characters, pr...
easy○ Not Started
If Statements
Solve
305
Is It a DigitRead a single character from input. If it is a digit (`0`-`9`), print `Digit`. O...
easy○ Not Started
If Statements
Solve
306
Uppercase or LowercaseRead a single letter from input. If it is uppercase, print `Uppercase`. Otherwis...
easy○ Not Started
If Statements
Solve
307
Century YearRead a year from input. If it is a century year (evenly divisible by 100, like 1...
easy○ Not Started
If Statements
Solve
308
Free ShippingRead an order total (a whole number of dollars) from input. If it is 50 or more,...
easy○ Not Started
If Statements
Solve
309
Tall Enough to RideRead a rider's height in centimeters from input. If it is at least 120, print `E...
easy○ Not Started
If Statements
Solve
310
Yes or NoRead an integer from input that is either `1` or `0`. If it is `1`, print `Yes`....
easy○ Not Started
If Statements
Solve
311
Buzz on SevenRead an integer from input. If it is a multiple of 7, print `Buzz`. Otherwise pr...
easy○ Not Started
If Statements
Solve
312
Even Sum of TwoRead two integers, each on its own line, and add them. If the sum is even, print...
easy○ Not Started
If Statements
Solve
313
Absolute DifferenceRead two integers `a` and `b`, each on its own line. Print the absolute differen...
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
314
Age GroupRead an age from input and print its age group: under 13 is `Child`, 13 to 19 is...
medium○ Not Started
If Statements
Solve
315
Discount TiersRead an order total (whole dollars) from input and apply a discount: under 100 g...
medium○ Not Started
If Statements
Solve
316
Overtime PayRead the number of hours worked in a week from input. Pay is `20` dollars per ho...
medium○ Not Started
If Statements
Solve
317
Login CheckRead a username on the first line and a password on the second line. Access is g...
medium○ Not Started
If Statements
Solve
318
Traffic Light ActionRead a traffic light color (`red`, `yellow`, or `green`) from input and print th...
medium○ Not Started
If Statements
Solve
319
Water StateRead a temperature in Celsius (a whole number) from input and print the state of...
medium○ Not Started
If Statements
Solve
320
All Three EqualRead three integers, each on its own line. If all three are equal, print `All eq...
medium○ Not Started
If Statements
Solve
321
Sign of ProductRead two integers `a` and `b`, each on its own line. Look at the sign of their p...
medium○ Not Started
If Statements
Solve
322
Grade PointsRead a letter grade (`A`, `B`, `C`, `D`, or `F`) from input and print its grade-...
medium○ Not Started
If Statements
Solve
323
Triangle ValidityRead three positive integers as side lengths, each on its own line. Three sides ...
hard○ Not Started
If Statements
Solve
324
Triangle TypeRead three side lengths, each on its own line. Print the triangle type: `Equilat...
hard○ Not Started
If Statements
Solve
325
Rock Paper ScissorsRead two moves: player 1 on the first line and player 2 on the second line. Each...
hard○ Not Started
If Statements
Solve
326
Quadratic Roots CountRead three integers `a`, `b`, and `c`, each on its own line, the coefficients of...
hard○ Not Started
If Statements
Solve