diff --git "a/Programmers/\354\230\267\352\260\200\352\262\214_\355\225\240\354\235\270_\353\260\233\352\270\260.cpp" "b/Programmers/\354\230\267\352\260\200\352\262\214_\355\225\240\354\235\270_\353\260\233\352\270\260.cpp" new file mode 100644 index 0000000..5685e47 --- /dev/null +++ "b/Programmers/\354\230\267\352\260\200\352\262\214_\355\225\240\354\235\270_\353\260\233\352\270\260.cpp" @@ -0,0 +1,16 @@ +#include +#include +using namespace std; + +int solution(int price) { + if (price >= 500000) { + return price * 0.8; + } + if (price >= 300000) { + return price * 0.9; + } + if (price >= 100000) { + return price * 0.95; // 5% 할인 + } + return price; +} \ No newline at end of file