CJCoding With Joseph
15per day
TitleTopicsAction
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
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