CJCoding With Joseph
TitleTopicsAction
16
Read Single IntegerWrite a program that reads a single integer from the user using cin and prints i...
easy○ Not Started
User Input
Solve
17
Read String InputWrite a program that reads a single word (string) from the user using cin and pr...
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
263
Read and Double a NumberRead a single integer from input, then print double its value (the number times ...
easy○ Not Started
User Input
Solve
264
Add Two Numbers from InputRead two integers from input (separated by a space) and print their sum. Exampl...
easy○ Not Started
User Input
Solve
265
Multiply Two Numbers from InputRead two integers from input (separated by a space) and print their product. Ex...
easy○ Not Started
User Input
Solve
266
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
267
Square of an Input NumberRead a single integer and print its square (the number multiplied by itself). E...
easy○ Not Started
User Input
Solve
268
Increment an Input NumberRead a single integer and print the value that comes right after it (the number ...
easy○ Not Started
User Input
Solve
269
Greet by NameRead a single word (a name) from input and print a greeting in this exact format...
easy○ Not Started
User Input
Solve
270
Sum of Three Numbers from InputRead three integers from input (separated by spaces) and print their sum. Examp...
easy○ Not Started
User Input
Solve
271
Half of an Input NumberRead a single integer and print half of it using integer division (the fractiona...
easy○ Not Started
User Input
Solve
272
Add Two Decimal NumbersRead two decimal (floating-point) numbers from input and print their sum rounded...
easy○ Not Started
User Input
Solve
273
Negate an Input NumberRead a single integer and print its negation (flip the sign). A positive number ...
easy○ Not Started
User Input
Solve
344
Product of Two DoublesRead two floating-point numbers from input and print their product with exactly ...
easy○ Not Started
User Input
Solve
345
Cube of an Input NumberRead a single integer from input and print its cube (the number multiplied by it...
easy○ Not Started
User Input
Solve
346
Swap Two NumbersRead two integers `a` and `b` from input, swap their values using a temporary va...
easy○ Not Started
User Input
Solve
349
Absolute Value of InputRead a single integer from input and print its absolute value (the number withou...
easy○ Not Started
User Input
Solve
350
Fahrenheit to Celsius from InputRead a temperature in Fahrenheit (a floating-point number) from input and print ...
easy○ Not Started
User Input
Solve
351
Triple an Input NumberRead a single integer from input and print three times its value. For example, i...
easy○ Not Started
User Input
Solve
352
Total Cost from Price and QuantityRead a floating-point unit price and an integer quantity from input, then print ...
easy○ Not Started
User Input
Solve
356
Length of Input StringRead a single word (no spaces) from input and print how many characters it conta...
easy○ Not Started
User Input
Solve
357
Concatenate Two WordsRead two words from input and print them joined together with no space between t...
easy○ Not Started
User Input
Solve
360
Last Digit of a NumberRead a non-negative integer from input and print only its last digit. For exampl...
easy○ Not Started
User Input
Solve
362
Kelvin to Celsius from InputRead a temperature in Kelvin (a floating-point number) from input and print the ...
easy○ Not Started
User Input
Solve
366
Print Larger then SmallerRead two integers from input and print the larger one first, then the smaller on...
easy○ Not Started
User Input
Solve
367
Minimum of Two from InputRead two integers from input and print the smaller of the two. For example, if t...
easy○ Not Started
User Input
Solve
21
Read Full Line with getlineWrite a program that reads a full line of text (including spaces) from the user ...
medium○ Not Started
User Input
Solve
22
Simple Calculator InputWrite a program that reads two float numbers from the user and displays all four...
medium○ Not Started
User Input
Solve
23
Age Calculator InputWrite a program that reads a person's name (single word) and age, then calculate...
medium○ Not Started
User Input
Solve
24
Rectangle Area InputWrite a program that reads the length and width of a rectangle as floats and cal...
medium○ Not Started
User Input
Solve
274
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
275
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
276
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
277
Celsius to Fahrenheit from InputRead an integer Celsius temperature and print the Fahrenheit equivalent using F ...
medium○ Not Started
User Input
Solve
278
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
343
Read Two Doubles and Print AverageRead two floating-point numbers from input (separated by a space or newline) and...
medium○ Not Started
User Input
Solve
347
Circle Area from RadiusRead a floating-point radius from input and print the area of the circle with ex...
medium○ Not Started
User Input
Solve
348
Quotient and RemainderRead two integers `a` and `b` from input. Print the quotient and remainder of `a...
medium○ Not Started
User Input
Solve
354
Multiplication Table of InputRead a single integer `n` from input and print its multiplication table from 1 t...
medium○ Not Started
User Input
Solve
355
Factorial of Input NumberRead a non-negative integer `n` from input and print its factorial (the product ...
medium○ Not Started
User Input
Solve
359
Convert Seconds to Minutes and SecondsRead a total number of seconds (an integer) from input and print how many whole ...
medium○ Not Started
User Input
Solve
361
Sum of Even Numbers up to NRead a positive integer `n` from input and print the sum of all even numbers fro...
medium○ Not Started
User Input
Solve
363
Compute Speed from Distance and TimeRead a distance and a time (both floating-point numbers) from input and print th...
medium○ Not Started
User Input
Solve
365
Add Sales Tax to PriceRead a floating-point price from input and print the final price after adding 8%...
medium○ Not Started
User Input
Solve
353
Power of Two IntegersRead a base and an exponent (both non-negative integers) from input and print th...
hard○ Not Started
User Input
Solve
358
Reverse Digits of a NumberRead a positive integer from input and print the number formed by reversing its ...
hard○ Not Started
User Input
Solve
364
Digit Sum of a NumberRead a positive integer from input and print the sum of its digits. For example,...
hard○ Not Started
User Input
Solve