一步一步学习C#编程札记
C#编程基础一、C#程序结构//文件名:Hiker.cs 类名不一定等于文件名using System; //每一个程序必须在开头使用这一语句public sealed class HitchHiker{public static void Main()//程序从Main 开始执行{int result;result = 9 * 6;int thirteen;thirteen = 13;Console.Write(result / thirteen); /...