제품의 가격과 할인율(%)을 입력받아 할인가와 에누리 금액을 출력하는 프로그램을 작성해보자. #define _CRT_SECURE_NO_WARNINGS #include int main(void) { int fee; printf("제품의 가격? "); scanf("%d", &fee); int dis; printf("할인율? "); scanf("%d", &dis); int price = fee * dis * 0.01; printf("할인가: %d원(%d원 할인)\n", fee - price, price); return 0; }