From a0c8d86f6241171194ca14207c159504d5833a1d Mon Sep 17 00:00:00 2001 From: lee Date: Thu, 12 Mar 2020 20:02:16 +0000 Subject: [PATCH] costumeprofit exercise for exam --- subjects/costumeprofit.en.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 subjects/costumeprofit.en.md diff --git a/subjects/costumeprofit.en.md b/subjects/costumeprofit.en.md new file mode 100644 index 00000000..778db6af --- /dev/null +++ b/subjects/costumeprofit.en.md @@ -0,0 +1,22 @@ +## costumeprofit + +### Instructions + +Shop is selling **a** ties, **b** scarfs, **c** waistcoats, **d** jackets. + +- You want to make a costume. There are 2 types of costumes : + - 1 - costume composed of tie and jacket. + - 2 - costume composed of scarf, waistcoat, and jacket. + +Costumes of first type cost **e** dollars, of second type cost **f** dollars. + +What is the maximum amount of dollars that shop can earn by selling costumes? + +Input will be given as 6 arguments, your output should be displayed as standard output. + +Input: `./main **a** **b** **c** **d** **e** **f**` + +```console +$> ./main 12 11 13 20 4 6 +102 +```