
C#
叶言-ne
什么都搞不懂,自己也搞不懂
展开
-
C#程序作业----实验二
** 2.1 编写控制台程序,定义两个单精度实数x、y,值分别为78.5和85.5,求两个数之和 ** using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TEXT1 { class Program { static void Main(string[] args)原创 2021-09-22 15:25:09 · 1347 阅读 · 0 评论 -
C#程序作业--实验一
实验一 实验1.1 编写控制台程序,输出hello world! using System; namespace ch01 { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); Console.ReadKey(); } } } 实验1.2 编写窗体程序,让用户输入姓原创 2021-09-08 23:06:07 · 547 阅读 · 0 评论