在我的代碼,控制檯應用程序代碼錯誤
int x;
int y;
x = 7;
if (x == y)
{
Console.WriteLine("The numbers are the same!");
}
else
{
Console.WriteLine("The numbers are different.");
}
Console.ReadLine();
for (int i = 0; i < y; i--)
{
Console.WriteLine("{0} sheep!", i);
}
Console.ReadLine();
string[] colors = new string[y];
colors[0] = "green";
colors[1] = "yellow";
colors[y] = "red";
Console.WriteLine("Your new code is {0}.", Code(x, y));
Console.ReadLine();
}
static int Code(int myX, int myY)
{
int answer = myX * myX - myY;
}
}
}
存在,指出錯誤:
'ConsoleApplication1.Program.Code(INT,INT)':並非所有的代碼路徑 回報一個值'。
我不確定代碼有什麼問題。解決方案?
沒有價值的功能代碼返回 – Matt
你的代碼是不完整,有一部分缺失。 – perror