using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 方法001 { class Program { //写一个方法,判断一个年份是否为闰年 static void Main(string[] args) { ; ; int max=GetMax(a1, a2); Console.WriteLine(…
在Main()函数中,调用Test()函数,我们管Main()函数称之为调用者,管Test()函数称之为被调用者.如果被调用者想要得到调用者的值:1).传递参数.2).使用静态字段来模拟全局变量.如果调用者想要得到被调用者的值:1).返回值 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Con…
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 方法0004 { class Program { static void Main(string[] args) { //提示用户输入两个数字 计算这两个数字之间所有整数的和 //用户只能输入数字 //计算两个数字之间的和 //要求第一个数字必须比…