[SOLVED] Get that discount
im currently attempting the get the discount challenge. after a day or so of attempts i think im close but ive hit a snag. the challenge is part of the methods section and reads: A store is running a promotion. If the total purchase price is equal to or exceeds 10000, the price will be discounted by 20% The program you are given takes the total purchase price as as input. Complete the given method to take the total purchase price as an argument, and calculate and return the discounted price if the campaigns requirement is satisfied. The method should return the same price if the discount is not given. Sample input 13000 Sample output 10400 Explanation 13000 > 10000, so the discount is applied: 13000 - (0.2*13000) = 10400 Hint you need to use if else statements inside the method. Dont forget to mention the value type for the parameter before its name. Notice that method returns a value so you will need to the the Console.WriteLine() method to execute the output. the unedited template code can be found here: https://code.sololearn.com/cGbtHmzaV3Y4 my current version here: https://code.sololearn.com/c9a134a18a28 the issue i seem to be having is passing the input value into the method. any help would be appreciated. thank you.