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