我在调用方法时遇到问题,并且似乎无法找出调用它们的正确方法

问题描述 投票:0回答:1

我正在编写一个程序来计算矩形的面积和周长,但我似乎不知道如何调用这 3 个方法。

我不知道如何调用

RectangleArea
、周长和结果方法,以便获取我在其中创建的双精度数以在结果方法中打印出来。

下面我在主方法中调用它们,但是当我注释掉我的双打时,我得到一个错误,它们在当前上下文中不存在。如果我取消注释它们,我会收到另一个错误,告诉我正在使用未分配的变量。

我已经粘贴了下面的代码 - 如果有人可以提供指导,我将不胜感激。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Starter_Projects
{
    internal class Program
    {
        static void Main(string[] args)
        {
            //double recarea, recperm, recres, width, height, perimeter, area;
            Height();
            Width();
            RectanglArea(width,height);
            Rectangleperimeter(width,height);
            RectResults(perimeter, area);
        }

        private static void Height()
        {
            double height;

            Console.WriteLine("enter the height of the rectangle");
            height = Convert.ToInt32(Console.ReadLine());
        }

        public static void Width()
        {
            double width;

            Console.WriteLine("enter the width of the rectangle");
            width = Convert.ToInt32(Console.ReadLine());
        }

        public static double RectanglArea(double width, double height)
        {
            double area = width * height;
            return area;
        }

        public static double Rectangleperimeter(double width, double height)
        {
            double perimeter = 2 * (width + height);
            return perimeter;
        }

        public static void RectResults(double perimeter,double area)
        {
            Console.WriteLine("The perimeter of the rectangle is " + perimeter + "\n");
            Console.WriteLine("The area of the rectangle is " + area + "\n");
            Console.Read();
        }
    }
}
c#
1个回答
0
投票

您需要了解范围,特别是“高度”和“宽度”可见的地方。 了解 C# 中的范围和可见性

© www.soinside.com 2019 - 2024. All rights reserved.