Подскажите пожалуйста, в чем проблема? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Подскажите пожалуйста, в чем проблема?

В магазине проходит акция, если сумма покупки больше или ровно 10000 тыс то предоставляется скидка 20%, если меньше то не предоставляется.

4th Nov 2021, 4:15 PM
Николай
Николай - avatar
2 Answers
+ 1
Николай , look at the code and review your mistakes. Hope it helps you. https://code.sololearn.com/caaPL78IrGL9/?ref=app
4th Nov 2021, 8:16 PM
TheWh¡teCat 🇧🇬
TheWh¡teCat 🇧🇬 - avatar
0
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { int totalPrice = Convert.ToInt32(Console.ReadLine()); //выполните метод Discount(totalPrice); } //завершите объявление метода static int Discount(int skidka) { //завершите тело метода if (totalPrice >=10000) { skidka = totalPrice - (0.2 * totalPrice); return Console.WriteLine(skidka); } else { return Console.WriteLine(totalPrice); } } } }
4th Nov 2021, 4:15 PM
Николай
Николай - avatar