Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace GreetingByName
- {
- class Program
- {
- static void Main(string[] args)
- {
- string name = Console.ReadLine();
- Console.WriteLine("Hello, " + name + '!');
- }
- }
- }
- ИЛИ:
- namespace GreetingByName
- {
- class Program
- {
- static void Main(string[] args)
- {
- string name = Console.ReadLine();
- Console.WriteLine($"Hello, {name}!");
- }
- }
- }
- ИЛИ:
- namespace GreetingByName
- {
- class Program
- {
- static void Main(string[] args)
- {
- string name = Console.ReadLine();
- Console.WriteLine("Hello, {0}!", name);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement