You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
## 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.
|
|
|
|
|
|
|
|
In the output put '\n' at the end.
|
|
|
|
|
|
|
|
Input: `./main **a** **b** **c** **d** **e** **f**`
|
|
|
|
|
|
|
|
```console
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
$ ./main 12 11 13 20 4 6
|
|
|
|
102
|
|
|
|
```
|