错误:'方法必须有一个返回类型'

时间:2014-12-10 14:43:04

标签: c# methods return-type

我得到的问题是,在berekenBTW我一直得到“方法必须有一个返回类型”错误,我真的不知道如何解决这个问题。我一直在沙发上搜索,但我是C#的新手,其他问题只是让我难以理解。

我要做的是以下内容:

  1. 我告诉用户输入价格。

  2. 的readLine

  3. 将价格转换为双倍,因为我稍后会计算税额

  4. 我想使用方法berekenBTW与我计算税收和退税的双重

  5. 然后berekenBTW(nieuwe_prijs)之后的其余代码只有变量btw必须用berekenBTW(nieuwe_prijs)的返回来填充

    static void Main(string[] args) { // methode vraagGebrokenGetal & methode berekenBTW Console.WriteLine("geef een prijs op:"); string prijs = Console.ReadLine(); double nieuwe_prijs = Convert.ToDouble(prijs); berekenBTW(nieuwe_prijs); Console.WriteLine("De prijs was:"); Console.WriteLine(nieuwe_prijs); Console.WriteLine("De btw is:"); Console.WriteLine(btw); Console.WriteLine("De prijs plus de btw is:"); Console.WriteLine(nieuwe_prijs + btw); Console.ReadLine(); }

    private static berekenBTW(double prijs)
    {
        double btw = prijs * 0.21;
        return btw;
    }
    
  6. 我真的希望有人可以帮助我,如果我需要澄清只是问。我总是渴望学习

1 个答案:

答案 0 :(得分:1)

您应该添加像这样的返回类型

private static double berekenBTW(double prijs)
{
    double btw = prijs * 0.21;
    return btw;
}