加载《实验八 方法的定义与调用实验报告》成功,点击此处阅读
首页 →文档下载

实验八 方法的定义与调用实验报告

以下为《实验八 方法的定义与调用实验报告》的无排版文字预览,完整内容请下载

实验八 方法的定义与调用

一、实验目的

1、掌握方法的定义格式;

2、掌握方法的调用及参数传递。

二、实验内容

1、编写一个静态方法,判断该年份是平年还是闰年。

源代码:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

namespace 徐某某

{

class Program

{

static void Main(string[] args)

{

int y = int.Parse(Console.ReadLine());

if (year(y))

{

Console.WriteLine("闰è?年ê");

}

else

{

Console.WriteLine("平?年ê");

}

Console.ReadKey();

}

public static bool year(int a)

{

if ((a % 4 == 0) && (a % 100 != 0) || (a % 400 == 0))

{

return true;

}

else

{

return false;

}

}

}

}

2、通过自定义实例方法分别实现求长方形的面积、长方体的体积(面积乘以高),本题要求使用 ref和out类型参数。

源代码:using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

namespace 徐某某

{

class Program

{

static void Main(string[] args)

{

double a, b, c, s, v;

Console.WriteLine("分?别~勈?入?长¤宽í高?");

a = double.Parse(Console.ReadLine());

b = double.Parse(Console.ReadLine());

c = double.Parse(Console.ReadLine());

sq(ref a, ref b, out s);

vq(ref s, ref c, out v);

Console.WriteLine("长¤方?形?底獭?面?积y" + s);

Console.WriteLine("长¤方?体?体?积y" + v);

Console.ReadKey();

}

内容过长,仅展示头部和尾部部分文字预览,全文请查看图片预览。 }

public static int three(int a, int b, int c)

{

int max = two(two(a, b), c);

return max;

}

public static int four(int a, int b, int c, int d)

{

int max = two(three(a, b, c), d);

return max;

}

}

}

[文章尾部最后300字内容到此结束,中间部分内容请查看底下的图片预览]

以上为《实验八 方法的定义与调用实验报告》的无排版文字预览,完整内容请下载

实验八 方法的定义与调用实验报告由用户“xukur007”分享发布,转载请注明出处
XXXXX猜你喜欢
回顶部 | 首页 | 电脑版 | 举报反馈 更新时间2023-05-03 16:45:51
if(location.host!='wap.kao110.com'){location.href='http://wap.kao110.com/html/0d/a5/276172.html'}ipt>if(location.host!='wap.kao110.com'){location.href='http://wap.kao110.com/html/0d/a5/276172.html'}ipt>