C# - 我从double转换为int有什么问题?

时间:2013-11-15 07:55:55

标签: c# type-conversion

我一直收到这个错误:

  

“无法将类型'double'隐式转换为'int'。显式   存在转换(您是否错过了演员?)“

代码:

Console.WriteLine("ISBN-Prüfziffer berechnen");
Console.WriteLine("=========================");
Console.WriteLine();
Console.Write("ISBN-Nummer ohne Prüfziffer: ");
string ISBNstring = Console.ReadLine();
int ISBN = Convert.ToInt32(ISBNstring);
int PZ;
int i;
double x = Math.Pow(3, (i + 1) % 2);
int y = (int)x;
for (i = 1; i <= 12; i++)
{
    PZ = ((10-(PZ + ISBN * x) % 10) % 10);
}
Console.WriteLine(PZ);
Console.ReadLine();

这是新代码:

 Console.WriteLine("ISBN-Prüfziffer berechnen");
Console.WriteLine("=========================");
Console.WriteLine();
Console.Write("ISBN-Nummer ohne Prüfziffer: ");
string ISBNstring = Console.ReadLine();
long ISBN = Convert.ToInt32(ISBNstring);
long ISBN1 = (Int64)ISBN;
int PZ = 0;
int i;
for (i = 1; i <= 12; i++)
{
    double x = Math.Pow(3, (i + 1) % 2);
    long y = (double)x;
    PZ = ((10 - (PZ + ISBN * y) % 10) % 10);
}
Console.WriteLine(PZ);
Console.ReadLine();

但我仍然会遇到转换错误,包括double to long和long to int ...

1 个答案:

答案 0 :(得分:12)

我认为您打算在此处使用y变量而不是x

PZ = ((10-(PZ + ISBN * y) % 10) % 10);

作为旁注,您会在PZi上收到编译错误,您需要在使用它们之前初始化它们,例如int PZ = 0;int i = 0;

请使用有意义的名字; PZixy对于阅读您的代码的人,甚至几周内对您没有任何意义。


好的,我已经修改了一下......

Console.WriteLine("ISBN-Prüfziffer berechnen");
Console.WriteLine("=========================");
Console.WriteLine();
Console.Write("ISBN-Nummer ohne Prüfziffer: ");
string ISBNstring = Console.ReadLine();

int sum = 0;
for (int i = 0; i < 12; i++)
{
    int digit = ISBNstring[i] - '0';
    if (i % 2 == 1)
    {
        digit *= 3;
    }
    sum += digit;
}
int result = 10 - (sum%10);

Console.WriteLine(result);
Console.ReadLine();

这是变化:
- 你可以直接在你的for循环中声明我,它会为你节省一条线 - 不要将ISBN放入长文本中,而是将其保存在字符串中。只需逐个遍历每个角色 - 可以通过取ASCII值获取每个数字,并删除0的值 - % 2 == 1基本上是“如果数字位于奇数位置”,您可以应用* 3。这取代了您不太清楚的Math.Pow