Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
String Formatting Practice | Dealing with Data Types
C# Basics
course content

Course Content

C# Basics

C# Basics

1. Getting Started
2. Dealing with Data Types
3. Control Structures
4. Loops
5. Arrays
6. Methods

String Formatting Practice

Fix the code so that the values are correctly embedded in the output string.

cs

main

copy
12345678910111213141516
using System; internal class Program { static void Main(string[] args) { int num_1 = 10; int num_2 = num_1 * 2; int num_3 = num_2 * 3; int num_4 = num_1 + num_2 + num_3; // Change code below this line Console.WriteLine("The sum of {num_1}, {num_2} and {num_3} is {num_4}"); // Change code above this line } }
  1. Look for any missing symbol(s) in the string formatting syntax.
cs

main

copy
1234567891011121314151617
using System; internal class Program { static void Main(string[] args) { int num_1 = 10; int num_2 = num_1 * 2; int num_3 = num_2 * 3; int num_4 = num_1 + num_2 + num_3; // Change code below this line Console.WriteLine($"The sum of {num_1}, {num_2} and {num_3} is {num_4}"); // Change code above this line } }

Everything was clear?

Section 2. Chapter 9
We're sorry to hear that something went wrong. What happened?
some-alt