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

하늘리 개발일기

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • 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)
  • 방명록

[코테] (133)
[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
[COS PRO 2급] 4차 4번_조교의 수 구하기 (C/C++)

주어진 코드 #include #include #include int solution(int classes[], int classes_len, int m) { int answer = 0; for (int i = 0; i < classes_len; i++) { answer += classes[i] m;//빈칸 if (classes[i] m != 0)//빈칸 answer++; } return answer; } int main() { int classes[] = { 80, 45, 33, 20 }; int m = 30; int ret = solution(classes, 4, m); printf("solution 함수의 반환 값은 %d 입니다.\n", ret); } 완성 코드 #include #include #in..

[코테]/[GroomEdu] 2021. 5. 19. 22:10
[COS PRO 2급] 4차 3번_획득 점수 구하기. 도박은 안되요 (C/C++)

주어진 코드 #include #include #include char* func_a(char* bundle, int start, int n) { char* answer = (char*)malloc(sizeof(char) * n); for (int i = 0; i score2) { answer[0] = 1; answer[1] = score1; } else if (score1 < score2) { answer[0] = 2; ans..

[코테]/[GroomEdu] 2021. 5. 19. 22:10
[COS PRO 2급] 4차 1번_상담 선생님은 너무 바빠요 (C/C++)

주어진 코드 #include #include #include int* solution(char* schedule[], int schedule_len) { int x_count = 0; for(int i=0; i

[코테]/[GroomEdu] 2021. 5. 18. 11:00
[COS PRO 2급] 4차 2번_시험 합격자가 몇명이지? (C/C++)

주어진코드 #include #include #include int func_a(int passed, int non_passed) { return (passed > 1 && non_passed == 0); } int func_b(int scores[3]) { int answer = 0; if(scores[0] = 80) { answer++; } if(scores[1] >= 88) { answer++; } if(scores[..

[코테]/[GroomEdu] 2021. 5. 18. 11:00
이전 1 ··· 10 11 12 13 14 15 16 17 다음
이전 다음
공지사항
  • About Me
최근에 올라온 글
TAG
  • groomedu
  • c언어
  • CosPro
  • c언어 기출문제
  • 1급
  • 코스프로
  • 구름에듀
  • lv1
  • 알고리즘
  • programmers
  • 구름에듀 기출문제
  • Cos Pro
  • lv2
  • cospro기출
  • YBM기출
  • C++
  • groom
  • 기출문제
  • 배열
  • C
  • 프로그래머스
  • cospro기출문제
  • COSPRO 2급
  • 코딩테스트
  • 배열활용문제
  • 연습문제
  • 자바
  • 구름 기출문제
  • Java
  • YBM
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

티스토리툴바