Untitled
Anonymous
plain_text
10/19/2023 5:21 AM
420 B
37
Indexable
using System;
namespace GreetingApp
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello! What's your name?");
string name = Console.ReadLine();
Console.WriteLine($"Hello, {name}! Welcome to the Greeting App.");
}
}
}
Editor is loading...