using System;
namespace restless
{
class Program
static void Main(string[] args)
Console.WriteLine("Введите имя и фамилию студента: ");
string _fullName = Console.ReadLine();
Console.WriteLine($"Имя и фамилия студента группы: {_fullName}");
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
using System;
namespace restless
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Введите имя и фамилию студента: ");
string _fullName = Console.ReadLine();
Console.WriteLine($"Имя и фамилия студента группы: {_fullName}");
}
}
}