• + 0 comments

    c#

    public static int profit(int b, int s, int c)

    {
    // Return the fixed profit.
        int markup = (b+s-c);
        return markup;
        Console.WriteLine(markup);
    }