You are viewing a single comment's thread. Return to all 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); }
Seems like cookies are disabled on this browser, please enable them to open this website
Combo Meal
You are viewing a single comment's thread. Return to all comments →
c#
public static int profit(int b, int s, int c)