Завдання з рядками
Використовуйте конкатенацію рядків, щоб об'єднати та вивести три рядки 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 } } }
Дякуємо за ваш відгук!