| Title | Topics | Action | |||
|---|---|---|---|---|---|
| 1 | Hello, C#!Use `Console.WriteLine` to print exactly this text:
Hello, C#!... | easy | ○ Not Started | Printing | Solve |
| 2 | Print a Computed SumUse `Console.WriteLine` with string interpolation to print the line below, compu... | easy | ○ Not Started | Printing | Solve |
| 3 | Greet With InterpolationA `name` variable is given. Use string interpolation to print:
Hi, Mia!... | easy | ○ Not Started | Printing | Solve |
| 7 | Print Two LinesUse two `Console.WriteLine` calls to print these two lines:
First
Second... | easy | ○ Not Started | Printing | Solve |
| 8 | Write Without a New Line`Console.Write` prints WITHOUT adding a new line (unlike `Console.WriteLine`). U... | easy | ○ Not Started | Printing | Solve |
| 9 | Print a NumberUse `Console.WriteLine` to print the number 42 (no quotes needed for a number):
... | easy | ○ Not Started | Printing | Solve |
| 10 | Print a CalculationUse `Console.WriteLine` to print the result of 7 times 6 (let C# compute it):
4... | easy | ○ Not Started | Printing | Solve |
| 11 | Print a Tab Between WordsUse the tab escape sequence `\t` to print these two words separated by a tab:
N... | easy | ○ Not Started | Printing | Solve |
| 12 | Print Quotation MarksTo put a double quote inside a string, escape it with a backslash (`\"`). Print ... | easy | ○ Not Started | Printing | Solve |
| 13 | Print a File PathA backslash inside a string must be written as `\\`. Print this exact text:
C:\... | easy | ○ Not Started | Printing | Solve |
| 14 | Print a Boolean ResultPrint the result of the comparison `10 > 7`. Note: in C#, a bool prints with a c... | easy | ○ Not Started | Printing | Solve |
| 15 | Print a CharacterA `char` holds a single character, written with single quotes. Create a char wit... | easy | ○ Not Started | Printing | Solve |
| 16 | Concatenate Two WordsThe `+` operator joins two strings. Print the result of joining "Foo" and "Bar":... | easy | ○ Not Started | Printing | Solve |
| 17 | Print a Decimal NumberUse `Console.WriteLine` to print the decimal number 2.5:
2.5... | easy | ○ Not Started | Printing | Solve |
| 18 | Print a Labeled ScoreA `score` variable is given. Use the `+` operator to print the score with a labe... | easy | ○ Not Started | Printing | Solve |
| 19 | Print a Multiplication SentenceUse string interpolation to print this exact line, computing the product (not ha... | easy | ○ Not Started | Printing | Solve |
| 20 | Format to Two DecimalsA `price` of 19.5 is given. Print it with exactly two decimal places using the `... | medium | ○ Not Started | Printing | Solve |
| 21 | Round to Two DecimalsA value of 3.14159 is given. Print it rounded to two decimal places with `:F2`:
... | medium | ○ Not Started | Printing | Solve |
| 22 | Print a Currency AmountA `price` of 19.5 is given. Print it as a dollar amount with two decimals:
$19.... | medium | ○ Not Started | Printing | Solve |
| 23 | Build a Sentence from VariablesA `name` and an `age` are given. Use string interpolation to print:
Mia is 20 y... | medium | ○ Not Started | Printing | Solve |
| 24 | Right-Align a NumberAn alignment value in an interpolation pads a value to a width. Print 42 right-a... | medium | ○ Not Started | Printing | Solve |
| 25 | Two-Line Label BlockUsing a SINGLE `Console.WriteLine` with a `\n` newline and interpolation, print ... | medium | ○ Not Started | Printing | Solve |
| 26 | Print Yes or No with a TernaryA bool `isOpen` is true. Use a ternary (`condition ? a : b`) inside the output t... | medium | ○ Not Started | Printing | Solve |
| 27 | Print the Larger of TwoTwo ints `a` and `b` are given. Use a ternary to print whichever is larger:
8... | medium | ○ Not Started | Printing | Solve |
| 28 | Print Division and RemainderUsing interpolation, print the integer quotient and remainder of 17 divided by 5... | medium | ○ Not Started | Printing | Solve |