Зміст курсу
Основи C#
Основи C#
Завдання з рядками
Використовуйте конкатенацію рядків, щоб об'єднати та вивести три рядки strA
, strB
та strC
:
main
using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { string strA = "The "; string strB = "sentence is "; string strC = "complete."; // Write code below this line Console.WriteLine(___); // Write code above this line } } }
- Конкатенація рядків — це процес об'єднання двох рядків за допомогою оператора +.
main
using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { string strA = "The "; string strB = "sentence is "; string strC = "complete."; // Write code below this line Console.WriteLine(strA + strB + strC); // Write code above this line } } }
Дякуємо за ваш відгук!