JAVA
·
发表于 5年以前
·
阅读量:900
using System.Windows.Forms;
class HelloWorldApp
{
public static void Main()
{
MessageBox.Show("Hello, world!");
}
}