[코드업(codeup)/C]코드업(codeup) 3321 : 최고의 피자 C언어
▶문제 : Source Code (codeup.kr) Source Code 로그인을 하시기 바랍니다! codeup.kr ▶코드 작성 #include #include void quicksort(int *arr, int left, int right)//퀵 정렬 { int L = left, R = right, temp; int pivot = arr[(L + R) / 2]; while (L pivot) L++; while (arr[R] < pivot) R--; if (L L) quicksort(arr, L, right); } int main() { int n, a, b, dow, i, temp, sum = 0; int *tp; scanf("%d%d%d%d", &n, &a, &b, &dow); tp = (int ..
2021. 11. 16.
[코드업(codeup)/C]코드업(codeup) 3301 : 거스름돈 C언어
▶문제 : 거스름돈 (codeup.kr) 거스름돈 어떤 가게의 욕심쟁이 점원은 거스름돈을 나눠줄때 거스름돈의 개수를 적게해서 주고자 한다. 거스름돈을 입력 받아 점원이 줄 수 있는 최소 거스름돈의 개수를 출력하시오. 예를 들어 54520원인 codeup.kr ▶코드 작성 #include int main() { int n, i = 0, cnt = 0, arr[8] = {50000, 10000, 5000, 1000, 500, 100, 50, 10}; scanf("%d", &n); while (n != 0) { if (n >= arr[i])//가장 큰 액수부터 낼 수 있는지 확인 { cnt += n / arr[i];//거스름돈 개수 n = n % arr[i];//나머지 거스름돈 } i++; } printf("..
2021. 11. 16.