c#Helloworld
題目描述
請輸出樣例所示內容
輸出
?
樣例輸出
**********
Hello,world!
**********
using System;namespace ConsoleApp1
{class Program{static void Main(string[] args){Console.WriteLine("**********");Console.WriteLine("Hello,world!");Console.WriteLine("**********");}}
}
?