2

この次の呼び出し、特に最後のコンポーネントに問題があります。

Console.WriteLine("Taxpayer # {0} SSN: {1}, Income is {2:c}, Tax is {3:c}", i + 1, taxArray[i].SSN, taxArray[i].grossIncome, taxRates.CalculateTax(taxArray[i].grossIncome));

main で taxRates として開始された Rates クラスの CalculateTax メソッドを呼び出しています。

これがCalculateTaxメソッドです

public int CalculateTax(int income)
    {

        int taxOwed;
        //  If income is less than the limit then return the tax as income times low rate.
        if (income < incLimit){
            taxOwed = Convert.ToInt32(income * lowTaxRate); }
        //  If income is greater than or equal to the limit then return the tax as income times high rate.
        else if(income >= incLimit) {
            taxOwed = Convert.ToInt32(income * highTaxRate);}
        else taxOwed = 0;
        return taxOwed;
    }

incLimit、lowTaxRate、highTaxRate は事前に設定されています

これが常に 0 になる理由を教えてください。メソッドに 50000 のような数値を送信しても、0 が返ってきました。

メソッドを単独で使用するだけで値を取得できるので、それは別のものです。ここにコードがあります

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

namespace Assignment5_2
{
public class Rates
{
    // Create a class named rates that has the following data members: 
    int incLimit;
    double lowTaxRate;
    double highTaxRate;

    // use read-only accessor
    public int IncomeLimit
    { get { return incLimit; } }
    public double LowTaxRate
    { get { return lowTaxRate; } }
    public double HighTaxRate
    { get { return highTaxRate; } }

    //A class constructor that assigns default values 
    public void assignRates()
    {
        //int limit = 30000;
        //double lowRate = .15;
        //double highRate = .28;
        incLimit = 30000;
        lowTaxRate = .15;
        highTaxRate = .28;
    }
    //A class constructor that takes three parameters to assign input values for limit, low rate and high rate.
    public void assignRates(int lim, double low, double high)
    {
        incLimit = lim;
        lowTaxRate = low;
        highTaxRate = high;
    }
    //  A CalculateTax method that takes an income parameter and computes the tax as follows:
    public int CalculateTax(int income)
    {

        int taxOwed;
        //  If income is less than the limit then return the tax as income times low rate.
        if (income < incLimit)
            taxOwed = Convert.ToInt32(income * lowTaxRate); 
        //  If income is greater than or equal to the limit then return the tax as income times high rate.
        else 
            taxOwed = Convert.ToInt32(income * highTaxRate);
        Console.WriteLine(taxOwed);
        return taxOwed;
    }


}  //end class Rates

// Create a class named Taxpayer that has the following data members:
public class Taxpayer : IComparable
{
    //Use get and set accessors.
    string SSN
    { set; get; }
    int grossIncome
    { set; get; }
    int taxOwed
    { set; get; }

    int IComparable.CompareTo(Object o)
    {
        int returnVal;
        Taxpayer temp = (Taxpayer)o;
        if (this.taxOwed > temp.taxOwed)
            returnVal = 1;
        else if (this.taxOwed < temp.taxOwed)
            returnVal = -1;
        else returnVal = 0;

        return returnVal;

    }  // End IComparable.CompareTo

    public static void GetRates()
    {
        //  Local method data members for income limit, low rate and high rate.
        int incLimit;
        double lowRate;
        double highRate;
        string userInput;
        Rates rates = new Rates();
        //  Prompt the user to enter a selection for either default settings or user input of settings.
        Console.Write("Would you like the default values (D) or would you like to enter the values (E)?:  ");
        /*   If the user selects default the default values you will instantiate a rates object using the default constructor
        * and set the Taxpayer class data member for tax equal to the value returned from calling the rates object CalculateTax method.*/
        userInput = (Console.ReadLine());
        if (userInput == "D" || userInput == "d")
        {

            rates.assignRates();
        } // end if
        /*  If the user selects to enter the rates data then prompt the user to enter values for income limit, low rate and high rate, 
         * instantiate a rates object using the three-argument constructor passing those three entries as the constructor arguments and 
         * set the Taxpayer class data member for tax equal to the valuereturned from calling the rates object CalculateTax method. */
        else if (userInput == "E" || userInput == "e")
        {
            Console.Write("Please enter the income limit: ");
            incLimit = Convert.ToInt32(Console.ReadLine());
            Console.Write("Please enter the low rate: ");
            lowRate = Convert.ToDouble(Console.ReadLine());
            Console.Write("Please enter the high rate: ");
            highRate = Convert.ToDouble(Console.ReadLine());
            //Rates rates = new Rates();
            rates.assignRates(incLimit, lowRate, highRate);
        }
        else Console.WriteLine("You made an incorrect choice");
    }

    static void Main(string[] args)
    {

        Taxpayer[] taxArray = new Taxpayer[5];
        Rates taxRates = new Rates();
        //  Implement a for-loop that will prompt the user to enter the Social Security Number and gross income.
        for (int x = 0; x < taxArray.Length; ++x)
        {
            taxArray[x] = new Taxpayer();
            Console.Write("Please enter the Social Security Number for taxpayer {0}:  ", x + 1);
            taxArray[x].SSN = Console.ReadLine();

            Console.Write("Please enter the gross income for taxpayer {0}:  ", x + 1);
            taxArray[x].grossIncome = Convert.ToInt32(Console.ReadLine());

        }

        Taxpayer.GetRates();

        //  Implement a for-loop that will display each object as formatted taxpayer SSN, income and calculated tax.
        for (int i = 0; i < taxArray.Length; ++i)
        {
            Console.WriteLine("Taxpayer # {0} SSN: {1}, Income is {2:c}, Tax is {3:c}", i + 1, taxArray[i].SSN, taxArray[i].grossIncome, taxRates.CalculateTax(50000));//taxRates.CalculateTax(taxArray[i].grossIncome));

        } // end for 
        //  Implement a for-loop that will sort the five objects in order by the amount of tax owed 
        Array.Sort(taxArray);
        Console.WriteLine("Sorted by tax owed");
        for (int i = 0; i < taxArray.Length; ++i)
        {
            Console.WriteLine("Taxpayer # {0} SSN: {1}, Income is {2:c}, Tax is {3:c}", i + 1, taxArray[i].SSN, taxArray[i].grossIncome, taxRates.CalculateTax(taxArray[i].grossIncome));

        }
    }  //end main

} //  end Taxpayer class

}  //end 
4

5 に答える 5

1

問題は、Rates.assignRates()メソッドの使用にあります。静的なTaxpayer.GetRates()メソッドからのみ呼び出しています。このメソッドは、ローカルのRatesオブジェクトに作用してから、入力されたオブジェクトを破棄します。おそらく、Taxpayer.GetRates()を変更して、Ratesオブジェクトを返し、内部で作成された(および入力された)rates変数を返します。

public static Rates GetRates() { ... return rates; }

次に、Main()で、Taxpayer.GetRates()への既存の呼び出しを削除し、taxRates変数を宣言する行を次のように変更します。

Rates taxRates = Taxpayer.GetRates();

また、何らかの理由で入力の不良/欠落によるエラーケースも処理する必要があることに注意してください。ただし、現時点ではそれを行っていないようです。そのため、入力されたRatesオブジェクトを元に戻す以外の機能変更は含めませんでした。 。

さらに、全体で1つのインスタンスしか使用していないように見えるため、Ratesクラスを静的にすることを検討することをお勧めします。

于 2012-04-12T14:44:43.277 に答える
1

無再現。以下の簡単なプログラムを使用すると、有効なゼロ以外の結果が得られます (900値を使用):

internal class Program {
    private static int incLimit = 30000;
    private static float lowTaxRate = 0.18F;
    private static float highTaxRate = 0.30F;

    private static void Main(string[] args) {
        var result = CalculateTax(5000);
    }

    public static int CalculateTax(int income) {
        int taxOwed;
        // If income is less than the limit then return the tax
        //   as income times low rate.
        if (income < incLimit) {
            taxOwed = Convert.ToInt32(income * lowTaxRate);
        }
        // If income is greater than or equal to the limit then
        //   return the tax as income times high rate.
        else if (income >= incLimit) {
            taxOwed = Convert.ToInt32(income * highTaxRate);
        }
        else taxOwed = 0;

        return taxOwed;
    }
}
于 2012-04-12T02:50:40.990 に答える
1

最後のディシジョン ポイントelse taxOwed = 0;は決して実行されないため、必要ありません。以下に示すようにコードを実行しましたが、すべてが機能します。問題は、メソッドに渡されるパラメーターがゼロであるか、自分が思っているように値を設定していないことにあるはずです。

void Main()
{
    var result = CalculateTax(40000);
    Console.WriteLine(result);
}

public int CalculateTax(int income)
{
    var incLimit = 50000;
    var lowTaxRate = 0.10;
    var highTaxRate = 0.25;
    int taxOwed;

    if (income < incLimit){
        taxOwed = Convert.ToInt32(income * lowTaxRate); }
    else if(income >= incLimit) {
        taxOwed = Convert.ToInt32(income * highTaxRate);}
    return taxOwed;
}

アップデート

完全なコードを投稿したので、問題は、クラークが言及しているGetRates()ように、料金を返すように静的メソッドを変更する必要があることです。その静的メソッドは唯一の呼び出し場所であり、それらの割り当てられたレートは、そのメソッドに含まれる特定のインスタンスに対してのみ有効であり、他の場所には有効ではありません。に変更して、次のようにインスタンスを返します。rates.assignRates()ratesGetRates()rates

 public static Rates GetRates()
 {
    ...
    Rates rates = new Rates();
    ...
    return rates;
 } 

次に、メイン メソッドを次のように変更します。

static void Main(string[] args)
{
    Taxpayer[] taxArray = new Taxpayer[5];
    // Implement a for-loop that will prompt the user to enter
    // the Social Security Number and gross income.

    ...

    Rates taxRates = Taxpayer.GetRates();

    // Implement a for-loop that will display each object as formatted 
    // taxpayer SSN, income and calculated tax.
    for (int i = 0; i < taxArray.Length; ++i)
    {
        Console.WriteLine(
            "Taxpayer # {0} SSN: {1}, Income is {2:c}, Tax is {3:c}",
            i + 1, 
            taxArray[i].SSN, 
            taxArray[i].grossIncome,
            taxRates.CalculateTax(50000));

    } 
    ...
}
于 2012-04-12T02:51:16.950 に答える
0

0 を掛けたものはすべて 0 であるため、lowTaxRate と highTaxRate が 0 に設定されていないことを確認してください。

于 2012-04-12T02:44:56.907 に答える
0

メソッドにデバッグ ステートメントを追加して、lowTaxRate と hightTaxRate が 0/null でないことを確認します。

于 2012-04-12T02:48:07.060 に答える