c#Helloworld
题目描述
请输出样例所示内容
输出
样例输出
**********
Hello,world!
**********
using System;namespace ConsoleApp1
{class Program{static void Main(string[] args){Console.WriteLine("**********");Console.WriteLine("Hello,world!");Console.WriteLine("**********");}}
}