在C#中将数组中的不同数据类型相乘

时间:2015-10-23 16:43:07

标签: c# arrays operators

我收到错误“运算符'*'不能应用于'int'和'decimal []'”类型的操作数,因为我试图将两个值乘以不同的数据类型(一个是位于数组)。我的问题是我如何能够在下面的代码中使用多个numberOfMinutes * perMinuteRate?我的变量叫做total,我声明了双数据类型(尽管可能不正确)。

我尝试更改数据类型并使用格式化(如ToString),但我不知道该怎么做。我也试图谷歌答案没有成功。

我绝不是一名专业程序员;我不在学校。我是一名正在学习编程的数据分析师。

这是我的代码:

  static void Main(string[] args)
  {
     int[] areaCodes = { 262, 414, 608, 715, 815, 920 };
     decimal[] perMinuteRate = { .07m, .1m, .05m, .16m, .24m, .14m };
     int numberOfMinutes;
     int userAreaCode;
     string inputString = "1";

     while (inputString != "0")
     {
        int x;
        Console.WriteLine("Enter the area code for your call (or 1 to end):");
        inputString = Console.ReadLine();
        userAreaCode = Convert.ToInt32(inputString);

        Console.WriteLine("How many minutes will your call last?");
        inputString = Console.ReadLine();
        numberOfMinutes = Convert.ToInt32(inputString);

        for (x = 0; x < areaCodes.Length; x++)
        {
           if (userAreaCode == areaCodes[x])
           {
              ***double total = numberOfMinutes * perMinuteRate;***
              Console.WriteLine("You call to {0} will cost {1} per minute for a total of {2}.", areaCodes[x], perMinuteRate[x].ToString("C"), total.ToString("C"));
              x = areaCodes.Length;
           }
        }

        if (x != areaCodes.Length)
        {
           Console.WriteLine("I'm sorry; we don't cover that area.");
           inputString = "1";
        }
        else
        {
           Console.WriteLine("Thanks for being our customer.");
           inputString = "0";
        }
        Console.ReadLine();
     }
  }

提前谢谢。

1 个答案:

答案 0 :(得分:1)

变化:

double total = numberOfMinutes * perMinuteRate;

double total = (double)(numberOfMinutes * perMinuteRate[x]);

与您直接在下方的行中perMinuteRate的索引相同。

表达式[int] * [decimal]将产生小数,而演员(double)会将其转换为双精度

为避免精度损失,请将其更改为:

decimal total = numberOfMinutes * perMinuteRate[x];