| Title | Topics | Action | |||
|---|---|---|---|---|---|
| 54 | Read and Print a LineRead one line of text from the user with `Console.ReadLine` and print it back ex... | easy | ○ Not Started | User Input | Solve |
| 55 | Read and Double a NumberRead an integer and print double its value (the number times 2).
Example: input... | easy | ○ Not Started | User Input | Solve |
| 56 | Read and Add OneRead an integer and print the next number (the value plus 1).
Example: input 9 ... | easy | ○ Not Started | User Input | Solve |
| 57 | Add Two InputsRead two integers (each on its own line) and print their sum.
Example: inputs 3... | easy | ○ Not Started | User Input | Solve |
| 58 | Multiply Two InputsRead two integers (each on its own line) and print their product.
Example: inpu... | easy | ○ Not Started | User Input | Solve |
| 59 | Subtract Two InputsRead two integers (each on its own line) and print the first minus the second.
... | easy | ○ Not Started | User Input | Solve |
| 60 | Square of an InputRead an integer and print its square (the value times itself).
Example: input 6... | easy | ○ Not Started | User Input | Solve |
| 61 | Greet the UserRead a name and print a greeting using string interpolation in this exact format... | easy | ○ Not Started | User Input | Solve |
| 62 | Sum of Three InputsRead three integers (each on its own line) and print their sum.
Example: inputs... | easy | ○ Not Started | User Input | Solve |
| 63 | Half of an InputRead an integer and print half of it using integer division.
Example: input 10 ... | easy | ○ Not Started | User Input | Solve |
| 64 | Negate an InputRead an integer and print its negation (flip the sign).
Example: input 7 prints... | easy | ○ Not Started | User Input | Solve |
| 65 | Read a Decimal NumberRead a decimal (double) value and print it back.
Example: input 3.5 prints 3.5.... | easy | ○ Not Started | User Input | Solve |
| 66 | Add Two DecimalsRead two decimal numbers (each on its own line) and print their sum.
Example: i... | easy | ○ Not Started | User Input | Solve |
| 67 | Uppercase the InputRead a word and print it in all uppercase letters.
Example: input 'hello' print... | easy | ○ Not Started | User Input | Solve |
| 68 | Length of the InputRead a word and print how many characters it has using the `.Length` property.
... | easy | ○ Not Started | User Input | Solve |
| 69 | Cube of an InputRead an integer and print its cube (the value times itself times itself).
Examp... | easy | ○ Not Started | User Input | Solve |
| 277 | Lowercase the InputRead a line of text with `Console.ReadLine()` and print it converted to all lowe... | easy | ○ Not Started | User Input | Solve |
| 279 | First Character of InputRead a word with `Console.ReadLine()` and print only its first character. For th... | easy | ○ Not Started | User Input | Solve |
| 280 | Last Character of InputRead a word with `Console.ReadLine()` and print only its last character. For the... | easy | ○ Not Started | User Input | Solve |
| 281 | Remainder of Two InputsRead two whole numbers, each on its own line, and print the remainder when the f... | easy | ○ Not Started | User Input | Solve |
| 282 | Quotient of Two InputsRead two whole numbers, each on its own line, and print the integer quotient of ... | easy | ○ Not Started | User Input | Solve |
| 283 | Absolute Value of InputRead a whole number and print its absolute value using `Math.Abs`. For the input... | easy | ○ Not Started | User Input | Solve |
| 285 | Smaller of Two InputsRead two whole numbers, each on its own line, and print the smaller of the two u... | easy | ○ Not Started | User Input | Solve |
| 290 | Full Name from Two InputsRead a first name on the first line and a last name on the second line, then pri... | easy | ○ Not Started | User Input | Solve |
| 292 | Product of Three InputsRead three whole numbers, each on its own line, and print their product (all thr... | easy | ○ Not Started | User Input | Solve |
| 294 | Trim the InputRead a line that may have extra spaces at the start and end, and print it with t... | easy | ○ Not Started | User Input | Solve |
| 295 | Round a Decimal InputRead a decimal number and print it rounded to the nearest whole number using `Ma... | easy | ○ Not Started | User Input | Solve |
| 296 | Dollars to Cents from InputRead a whole number of dollars and print how many cents that is (multiply by 100... | easy | ○ Not Started | User Input | Solve |
| 298 | Last Digit of a NumberRead a non-negative whole number and print only its last digit using `% 10`. For... | easy | ○ Not Started | User Input | Solve |
| 70 | Add Two Numbers on One LineRead a single line containing two integers separated by a space, then print thei... | medium | ○ Not Started | User Input | Solve |
| 71 | Sum from 1 to NRead an integer N, then use a loop to add up all integers from 1 to N and print ... | medium | ○ Not Started | User Input | Solve |
| 72 | Even or Odd from InputRead an integer and print 'Even' if it is even, otherwise 'Odd'.
Example: input... | medium | ○ Not Started | User Input | Solve |
| 73 | Larger of Two InputsRead two integers (each on its own line) and print the larger one. If equal, pri... | medium | ○ Not Started | User Input | Solve |
| 74 | Average of Three InputsRead three integers (each on its own line) and print their integer average.
Exa... | medium | ○ Not Started | User Input | Solve |
| 75 | Celsius to Fahrenheit from InputRead a Celsius temperature (an integer) and print the Fahrenheit value using F =... | medium | ○ Not Started | User Input | Solve |
| 76 | Countdown from InputRead an integer N, then print the numbers from N down to 1 on one line separated... | medium | ○ Not Started | User Input | Solve |
| 77 | Repeat a WordRead a word on the first line and a count N on the second line. Print the word r... | medium | ○ Not Started | User Input | Solve |
| 78 | Sum of N NumbersRead an integer N on the first line, then read N more integers (each on its own ... | medium | ○ Not Started | User Input | Solve |
| 278 | Reverse a String from InputRead a word with `Console.ReadLine()` and print it with its characters in revers... | medium | ○ Not Started | User Input | Solve |
| 284 | Positive, Negative, or ZeroRead a whole number and print `Positive` if it is greater than 0, `Negative` if ... | medium | ○ Not Started | User Input | Solve |
| 286 | Smallest of Three InputsRead three whole numbers, each on its own line, and print the smallest of the th... | medium | ○ Not Started | User Input | Solve |
| 287 | Fahrenheit to Celsius from InputRead a temperature in Fahrenheit and print it converted to Celsius using the for... | medium | ○ Not Started | User Input | Solve |
| 288 | Times Table from InputRead a whole number `n` and print its times table from `1` to `5`, one line per ... | medium | ○ Not Started | User Input | Solve |
| 289 | Count Up to NRead a whole number `n` and print every integer from `1` up to `n`, one per line... | medium | ○ Not Started | User Input | Solve |
| 293 | Divisible by ThreeRead a whole number and print `Yes` if it is evenly divisible by 3, otherwise pr... | medium | ○ Not Started | User Input | Solve |
| 299 | Power of Two from InputRead a whole number `n` and print 2 raised to the power `n` (2 multiplied by its... | medium | ○ Not Started | User Input | Solve |
| 300 | Square Root of InputRead a whole number that is a perfect square and print its square root using `Ma... | medium | ○ Not Started | User Input | Solve |
| 291 | Sum of Digits from InputRead a non-negative whole number and print the sum of its digits. For the input ... | hard | ○ Not Started | User Input | Solve |
| 297 | Minutes to Hours and MinutesRead a whole number of minutes and print it broken into hours and leftover minut... | hard | ○ Not Started | User Input | Solve |
| 301 | Factorial of InputRead a whole number `n` and print `n` factorial, the product of all whole number... | hard | ○ Not Started | User Input | Solve |