| Title | Topics | Action | |||
|---|---|---|---|---|---|
| 1 | Age VariableUsing an integer, create a variable to hold your age (use any age value you'd li... | easy | ○ Not Started | Printing | Solve |
| 2 | New Line CharacterUse the newline escape sequence \n in one cout statement to display the followin... | easy | ○ Not Started | Printing | Solve |
| 3 | String OutputCreate a string variable with the value "Alice" and use cout to display it in th... | easy | ○ Not Started | Printing | Solve |
| 4 | Character OutputCreate a char variable with the value '#' and use cout to display it in the sent... | easy | ○ Not Started | Printing | Solve |
| 5 | Integer OutputCreate an int variable with the value 100 and use cout to display it in the sent... | easy | ○ Not Started | Printing | Solve |
| 6 | Multiple VariablesCreate a string variable with the value "Sarah" and an int variable with the val... | easy | ○ Not Started | Printing | Solve |
| 7 | Float PrecisionCreate a float variable with the value 9.8765f. Use cout with fixed and setpreci... | easy | ○ Not Started | Printing | Solve |
| 8 | Mixed Escape SequencesUse one cout statement with both \n and \t to display the following formatted te... | medium | ○ Not Started | Printing | Solve |
| 9 | Subtraction EquationCreate two integer variables with the values 15 and 8. Use one cout statement to... | medium | ○ Not Started | Printing | Solve |
| 10 | Product with FloatCreate an int variable with the value 5 and a float variable with the value 2.5f... | medium | ○ Not Started | Printing | Solve |
| 11 | Three Decimal PlacesCreate a float variable with the value 12.34567f. Use cout with fixed and setpre... | medium | ○ Not Started | Printing | Solve |
| 12 | Receipt FormattingCreate three float variables: price1 = 12.99f, price2 = 8.50f, and price3 = 15.2... | medium | ○ Not Started | Printing | Solve |
| 13 | Field Width PaddingCreate four integer variables with the values 5, 42, 156, and 1003. Use cout wit... | medium | ○ Not Started | Printing | Solve |
| 14 | Temperature ConversionCreate a float variable for Fahrenheit temperature with the value 98.6f. Convert... | medium | ○ Not Started | Printing | Solve |
| 15 | Complex Product DisplayCreate variables: string item = "Laptop", int quantity = 3, float price = 899.99... | medium | ○ Not Started | Printing | Solve |