15
1
using System;
2
public class Program {
3
public static void Main() {
4
5
string str1 = "study C# \nusing a great course!"; // use \n to add a new line to your string
6
Console.WriteLine(str1);
7
8
string str2 = "study C# \tusing a great course!"; // use \t to add a tab to your string
9
Console.WriteLine(str2);
10
11
string str3 = "study C#\\CSharp using a great course!";
12
Console.WriteLine(str3);
13
14
}
15
}
Cached Result
csharp