从菜单中做出决定

时间:2015-03-28 23:20:07

标签: c#

这是我的第一篇文章和我在C#的第一个学期。我有一个家庭作业,我已经工作了几天,我无法弄清楚。我将尽力解释它。

所以我必须创建一个类来调用另外两个类并编译要打印的类。用户可以从菜单中选择一个数字,该数字用于进行数学运算并打印答案。我无法获取代码来生成选择并执行数学运算。

这是我的第一堂课。

class MainModule
{
    static void Main()
    {
        string assignment = "Assignment#3B-Math Operations Modified";

        MathOperationUI myNumber = new MathOperationUI();
        myNumber.MathMainModule();

        Console.ReadLine();

这是我的第二堂课。

class MathOperations
{
    int firstOperand;
    int secondOperand;

    public int FirstOperand
    {
        get
        {
            return firstOperand;
        }
        set
        {
            firstOperand = value;
        }
    }

    public int SecondOperand
    {
        get
        {
            return secondOperand;
        }
        set
        {
            secondOperand = value;
        }
    }

    public MathOperations()
    {
        firstOperand = 0;
        secondOperand = 0;
    }

    public double Add()
    {
        double theAddition;
        theAddition = (firstOperand + secondOperand);
        return theAddition;
    }

    public double Subtract()
    {
        double theSubtraction;
        theSubtraction = (firstOperand - secondOperand);
        return theSubtraction;
    }

    public double Multiply()
    {
        double theMultiplication;
        theMultiplication = (firstOperand * secondOperand);
        return theMultiplication;
    }

    public double Divide()
    {
        double theDivision;
        theDivision = (float)firstOperand / (float)secondOperand;
        return theDivision;

我上一堂课给了我这个问题。

class MathOperationUI
{
    public MathOperationUI()
    {
    }
    public void MathMainModule()
    {
        int firstOperand;
        int secondOperand;

        DisplayMenu();         

        MathOperations usersMathOperations;

        firstOperand = PromptForInterger("first");
        secondOperand = PromptForInterger("second");

        usersMathOperations = new MathOperations ();
    }

    public void DisplayMenu()
    {
        Console.WriteLine("\n\tMenu");
        Console.WriteLine("****************************");
        Console.WriteLine("1: Addition Operation");
        Console.WriteLine("2: Subtraction Operation");
        Console.WriteLine("3: Multiplication Operation");
        Console.WriteLine("4: Division Operation");
        Console.WriteLine("5: Exit");
        Console.WriteLine("****************************");
    }

    static int ProcessMenu(int choice)
    {
        if (choice == 1)
            Console.WriteLine("\nWhen adding the number {0} and {1}, the answer is {2}", myNumber.FirstOperand, myNumber.SecondOperand, addition);
        else
            if (choice == 2)
                Console.WriteLine("\nWhen subtracting the number {0} and {1}, the answer is {2}", myNumber.FirstOperand, myNumber.SecondOperand, subtraction);
            else
                if (choice == 3)
                    Console.WriteLine("\nWhen multipling the number {0} and {1}, the answer is {2}", myNumber.FirstOperand, myNumber.SecondOperand, multiplication);
                else
                    if (choice == 4)
                        Console.WriteLine("\nWhen dividing the number {0} and {1}, the answer is {2:F2}", myNumber.FirstOperand, myNumber.SecondOperand, division);
                    else
                        if (choice == 5)
                            return 0;
    }

    static int PromptForInterger(string position)
    {
        Console.WriteLine("\n\nEnter the {0} number:\t", position);
        return (int.Parse(Console.ReadLine()));
    }

2 个答案:

答案 0 :(得分:2)

myNumber在当前上下文中不存在,因为它应该存在于ProcessMenu函数中,它应该存在于全局/实例上下文中。你是在正确的轨道,但你错过了一些点。在MathOperationsUI类中将MathOperations对象声明为intance变量,而不是在MathMainModule中设置该对象的FirstOperand和SecondOperand并调用ProcessMenu。在Process菜单中,而不是使用myNumber,使用您声明为实例变量的对象(MathOperations),并调用其相应的函数(添加,乘法等)让我知道您是否正常工作。我有一个工作版本,如果你拿不到它,我会发布它。

以下内容只能在main方法中访问,因为这是声明它的地方。如果在方法中声明它,则只能在该方法中访问它,除非您将其作为参数传递给另一个方法。

 MathOperationUI myNumber = new MathOperationUI();

此外你不想调用myNumber.FirstOperand,因为myNumber是MathOperationUI类型,但是FirstOperand在MathOperations中不在..UI。

您的MathOperationUI应如下所示。在类(MathOperationUI)中声明但在任何方法之外的MathOperations对象。这意味着您可以从MathOperationUI中的任何方法访问此对象。然后,您应该使用PromptForInterger的用户输入设置MathOperations(第一个和第二个操作数)的属性。最后,您应该调用ProcessMenu方法来处理这些输入。

public class MathOperationUI
{
    MathOperations usersMathOperations;

    public MathOperationUI()
    {
        usersMathOperations = new MathOperations();
    }

    public void MathMainModule()
    {
        DisplayMenu();
        usersMathOperations.FirstOperand = PromptForInterger("first");
        usersMathOperations.SecondOperand = PromptForInterger("second");
        Console.WriteLine("\n\nEnter your coice");
        ProcessMenu(int.Parse(Console.ReadLine()));
    }

现在您可以从流程方法访问此对象。你可以得到它的第一个和第二个操作数,并调用Add,Multiply等方法。

Console.WriteLine("\nWhen adding the number {0} and {1}, the answer is {2}", usersMathOperations.FirstOperand, usersMathOperations.SecondOperand, usersMathOperations.Add());

最后这是正在运作的作品https://dotnetfiddle.net/5lE63L

希望这会让事情变得更加清晰。

答案 1 :(得分:2)

我认为您在实现编程的几个方面时遇到了问题:

范围特别重要,几乎会影响您编写的每一行代码。

也许您可以让您的导师再次为您解读这些概念?

(这不完全是一个解决方案,因为我不愿意简单地给你你的作业答案。但它希望能指出你正确的方向。)