본문 바로가기 메뉴 바로가기

하늘리 개발일기

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

하늘리 개발일기

검색하기 폼
  • 분류 전체보기 (138)
    • [코테] (133)
      • [Programmers Lv1] (43)
      • [Programmers Lv2] (19)
      • [GroomEdu] (61)
      • [Programmers] (0)
      • [YBM-sample] (10)
    • [Android] (1)
      • 이론 (0)
      • Kotlin (0)
      • JAVA (0)
    • [반성문] (1)
    • [클론코딩] (1)
    • [React-Node.js] (0)
  • 방명록

C (67)
[COS PRO 2급] 5차 1번_사다리 게임의 승자를 구해주세요! (C/C++)

주어진 코드 #include #include #include int solution(int ladders[][2], int ladders_len, int win) { int answer = 0; int player[6] = { 1, 2, 3, 4, 5, 6 }; for (int i = 0; i < ladders_len; i++) { int temp = player[ladders[i][0] - 1]; //빈칸 = temp;//빈칸 } answer = player[win - 1]; return answer; } int main() { int ladders[5][2] = { {1, 2}, {3, 4}, {2, 3}, {4, 5}, {5, 6} }; int ladders_len = 5; int win = 3; ..

[코테]/[GroomEdu] 2021. 5. 23. 16:00
[COS PRO 2급] 5차 2번_공강시간 구하기 (C/C++)

주어진 코드 #include #include #include int func_a(int time_table[], int time_table_len) { int answer = 0; for (int i = time_table_len - 1; i >= 0; i--) { if (time_table[i] == 1) { answer = i; break; } } return answer; } int func_b(int time_table[], int class1, int class2) { int answer = 0; for (int i = class1; i < class2; i++) if (time_table[i] == 0) answer++; return answer; } int func_c(int time_tab..

[코테]/[GroomEdu] 2021. 5. 23. 16:00
[COS PRO 2급] 4차 9번_위험한 지역 몇개인지 알려주기 (C/C++)

주어진 코드 #include #include #include int solution(int height[][4], int height_len) { int count = 0; //빈칸 return count; } int main() { int height[4][4] = { {3, 6, 2, 8}, {7, 3, 4, 2}, {8, 6, 7, 3}, {5, 3, 2, 9} }; int height_len = 4; int ret = solution(height, height_len = 4); printf("solution 함수의 반환 값은 %d 입니다.\n", ret); } 완성 코드 #include #include #include int solution(int height[][4], int height_len..

[코테]/[GroomEdu] 2021. 5. 22. 16:00
[COS PRO 2급] 4차 10번_XX시험 합격자 수 구하기 (C/C++)

주어진 코드 #include #include #include int solution(int scores[], int scores_len, int cutline) { int answer = 0; //빈칸 return answer; } int main() { int scores[5] = { 80, 90, 55, 60, 59 }; int scores_len = 5; int cutline = 60; int ret = solution(scores, scores_len, cutline); printf("solution 함수의 반환 값은 %d 입니다.\n", ret); } 완성 코드 #include #include #include int solution(int scores[], int scores_len, int c..

[코테]/[GroomEdu] 2021. 5. 22. 16:00
[COS PRO 2급] 4차 7번_오른 점수와 떨어진 점수 구하기 (C/C++)

주어진 코드 #include #include #include int func_a(int scores1[], int scores2[], int scores_len) { int answer = 0; for (int i = 0; i scores2[i] - scores1[i])//중간점수 - 기말점수 ..

[코테]/[GroomEdu] 2021. 5. 21. 22:50
[COS PRO 2급] 4차 8번_누가 반장이 될까요 (C/C++)

주어진 코드 #include #include #include int solution(int n, int votes[], int votes_len) { int arr[101] = { 0, }; for (int i = 0; i n / 2)//이때 n은 후보의 수 이다. return i; return -1; } int main() { int n1 = 3; int votes1[7] = { 1, 2, 1, 3, 1, 2, 1 }; int votes_len1 = 7; int ret1 = solution(n1, votes1, votes_len1); printf("sol..

[코테]/[GroomEdu] 2021. 5. 21. 22:50
[COS PRO 2급] 4차 5번_다이어트하는 A씨의 추가 운동 여부 알려주기 (C/C++)

주어진 코드 #include #include #include int solution(int calorie[], int calorie_len) { int min_cal = 0; int answer = 0; for (int i = 0; i min_cal) answer += calorie[i] - min_cal; else min_cal = calorie[i]; } return answer; } int main() { int calorie[] = { 713, 665, 873, 500, 751 }; int ret = solution(calorie, 5); printf("solution 함수의 반환 값은 %d 입니다.\n", ret); } 완성 ..

[코테]/[GroomEdu] 2021. 5. 20. 19:40
[COS PRO 2급] 4차 6번_여러분이 열심히 모은 point, 돌려 드립니다 (C/C++)

주어진 코드 #include #include #include int solution(int point) { if (point < 1000) return 0; return point / 100 * 100; } int main() { int point = 2323; int ret = solution(point); printf("solution 함수의 반환 값은 %d 입니다.\n", ret); } 완성 코드 #include #include #include int solution(int point) { if (point < 1000) return 0; return point / 100 * 100; } int main() { int point = 2323; int ret = solution(point); prin..

[코테]/[GroomEdu] 2021. 5. 20. 19:40
이전 1 ··· 3 4 5 6 7 8 9 다음
이전 다음
공지사항
  • About Me
최근에 올라온 글
TAG
  • 배열활용문제
  • 구름에듀 기출문제
  • 구름에듀
  • Java
  • lv2
  • lv1
  • programmers
  • 자바
  • 구름 기출문제
  • 연습문제
  • COSPRO 2급
  • C
  • 기출문제
  • 코스프로
  • C++
  • YBM
  • cospro기출
  • c언어
  • groom
  • Cos Pro
  • cospro기출문제
  • CosPro
  • 1급
  • 프로그래머스
  • 코딩테스트
  • 배열
  • groomedu
  • YBM기출
  • 알고리즘
  • c언어 기출문제
more
«   2025/05   »
일 월 화 수 목 금 토
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바