| Title | Topics | Action | |||
|---|---|---|---|---|---|
| 16 | Read Single IntegerWrite a program that reads a single integer from the user using scanf and prints... | easy | ○ Not Started | User Input | Solve |
| 17 | Read String with scanfWrite a program that reads a single word (string) from the user using scanf and ... | easy | ○ Not Started | User Input | Solve |
| 18 | Read Two IntegersWrite a program that reads two integers from the user and displays their sum:
S... | easy | ○ Not Started | User Input | Solve |
| 19 | Read Float InputWrite a program that reads a float value from the user and prints it with 2 deci... | easy | ○ Not Started | User Input | Solve |
| 20 | Read Character InputWrite a program that reads a single character from the user and prints:
You pre... | easy | ○ Not Started | User Input | Solve |
| 149 | Read and Double a NumberRead a single integer from input, then print double its value (the number times ... | easy | ○ Not Started | User Input | Solve |
| 150 | Add Two Numbers from InputRead two integers from input (separated by a space) and print their sum.
Exampl... | easy | ○ Not Started | User Input | Solve |
| 151 | Multiply Two Numbers from InputRead two integers from input (separated by a space) and print their product.
Ex... | easy | ○ Not Started | User Input | Solve |
| 152 | Subtract Two Numbers from InputRead two integers from input (separated by a space) and print the first minus th... | easy | ○ Not Started | User Input | Solve |
| 153 | Square of an Input NumberRead a single integer and print its square (the number multiplied by itself).
E... | easy | ○ Not Started | User Input | Solve |
| 154 | Increment an Input NumberRead a single integer and print the value that comes right after it (the number ... | easy | ○ Not Started | User Input | Solve |
| 155 | Greet by NameRead a single word (a name) from input and print a greeting in this exact format... | easy | ○ Not Started | User Input | Solve |
| 156 | Sum of Three Numbers from InputRead three integers from input (separated by spaces) and print their sum.
Examp... | easy | ○ Not Started | User Input | Solve |
| 157 | Half of an Input NumberRead a single integer and print half of it using integer division (the fractiona... | easy | ○ Not Started | User Input | Solve |
| 158 | Add Two Decimal NumbersRead two decimal (floating-point) numbers from input and print their sum rounded... | easy | ○ Not Started | User Input | Solve |
| 159 | Negate an Input NumberRead a single integer and print its negation (flip the sign). A positive number ... | easy | ○ Not Started | User Input | Solve |
| 226 | Triple an Input NumberRead an integer `n` from standard input and print three times its value (`n * 3`... | easy | ○ Not Started | User Input | Solve |
| 227 | Cube of an Input NumberRead an integer `n` from standard input and print its cube (`n * n * n`). For ex... | easy | ○ Not Started | User Input | Solve |
| 228 | Decrement an Input NumberRead an integer `n` from standard input and print the value one less than it (`n... | easy | ○ Not Started | User Input | Solve |
| 229 | Divide Two Numbers from InputRead two integers `a` and `b` from standard input (in that order) and print the ... | easy | ○ Not Started | User Input | Solve |
| 230 | Remainder of Two Numbers from InputRead two integers `a` and `b` from standard input (in that order) and print the ... | easy | ○ Not Started | User Input | Solve |
| 231 | Product of Three Numbers from InputRead three integers `a`, `b`, and `c` from standard input (in that order) and pr... | easy | ○ Not Started | User Input | Solve |
| 232 | Minimum of Two from InputRead two integers `a` and `b` from standard input (in that order) and print the ... | easy | ○ Not Started | User Input | Solve |
| 233 | Convert Hours to Minutes from InputRead a whole number of hours from standard input and print how many minutes that... | easy | ○ Not Started | User Input | Solve |
| 234 | Convert Days to Hours from InputRead a whole number of days from standard input and print how many hours that is... | easy | ○ Not Started | User Input | Solve |
| 235 | Kilograms to Grams from InputRead a whole number of kilograms from standard input and print how many grams th... | easy | ○ Not Started | User Input | Solve |
| 236 | Read Two Integers on Separate LinesRead two integers `a` and `b` from standard input (in that order) and print them... | easy | ○ Not Started | User Input | Solve |
| 237 | ASCII Value of a CharacterRead a single character from standard input and print its ASCII code (its numeri... | easy | ○ Not Started | User Input | Solve |
| 238 | Read Integer and Print Absolute ValueRead an integer `n` from standard input and print its absolute value (drop any n... | easy | ○ Not Started | User Input | Solve |
| 21 | Simple Calculator InputWrite a program that reads two float numbers from the user and displays all four... | medium | ○ Not Started | User Input | Solve |
| 22 | Age Calculator InputWrite a program that reads a person's name (single word) and age, then calculate... | medium | ○ Not Started | User Input | Solve |
| 23 | Rectangle Area InputWrite a program that reads the length and width of a rectangle as floats and cal... | medium | ○ Not Started | User Input | Solve |
| 160 | Sum from 1 to InputRead an integer N, then use a loop to add up all the integers from 1 to N and pr... | medium | ○ Not Started | User Input | Solve |
| 161 | Even or Odd from InputRead a single integer and print 'Even' if it is even, or 'Odd' if it is odd.
Ex... | medium | ○ Not Started | User Input | Solve |
| 162 | Maximum of Two from InputRead two integers from input and print the larger of the two. If they are equal,... | medium | ○ Not Started | User Input | Solve |
| 163 | Average of Three from InputRead three integers from input and print their integer average (the sum divided ... | medium | ○ Not Started | User Input | Solve |
| 164 | Celsius to Fahrenheit from InputRead an integer Celsius temperature and print the Fahrenheit equivalent using F ... | medium | ○ Not Started | User Input | Solve |
| 165 | Countdown from InputRead an integer N, then use a loop to print the numbers from N down to 1 on one ... | medium | ○ Not Started | User Input | Solve |
| 239 | Maximum of Three from InputRead three integers `a`, `b`, and `c` from standard input (in that order) and pr... | medium | ○ Not Started | User Input | Solve |
| 240 | Minimum of Three from InputRead three integers `a`, `b`, and `c` from standard input (in that order) and pr... | medium | ○ Not Started | User Input | Solve |
| 241 | Quotient and Remainder from InputRead two integers `a` and `b` from standard input (in that order). Print the quo... | medium | ○ Not Started | User Input | Solve |
| 242 | Add Sales Tax to a PriceRead a price (a decimal number) from standard input, add 8% sales tax, and print... | medium | ○ Not Started | User Input | Solve |
| 243 | Circle Area from InputRead a circle's radius (a decimal number) from standard input and print its area... | medium | ○ Not Started | User Input | Solve |
| 244 | Circle Circumference from InputRead a circle's radius (a decimal number) from standard input and print its circ... | medium | ○ Not Started | User Input | Solve |
| 245 | Positive, Negative, or Zero from InputRead an integer `n` from standard input. Print `positive` if it is greater than ... | medium | ○ Not Started | User Input | Solve |
| 246 | Divisible by 5 from InputRead an integer `n` from standard input. Print `Yes` if `n` is evenly divisible ... | medium | ○ Not Started | User Input | Solve |
| 247 | Fahrenheit to Celsius from InputRead a temperature in Fahrenheit (a decimal number) from standard input and prin... | medium | ○ Not Started | User Input | Solve |
| 248 | Factorial from InputRead a non-negative integer `n` from standard input and print `n!` (n factorial)... | hard | ○ Not Started | User Input | Solve |
| 249 | Sum of Even Numbers up to InputRead an integer `n` from standard input and print the sum of all even numbers fr... | hard | ○ Not Started | User Input | Solve |
| 250 | Multiplication Table from InputRead an integer `n` from standard input and print its multiplication table from ... | hard | ○ Not Started | User Input | Solve |