본문 바로가기
728x90

코드업(codeup)55

[코드업(codeup)/C]코드업(codeup) 2008 : 오름차순? 내림차순? 2 C언어 ▶문제 : 오름차순? 내림차순? 2 (codeup.kr) 오름차순? 내림차순? 2 수의 순서가 오름차순인 경우 '오름차순', 내림차순인 경우 '내림차순', 둘 다 아닐 경우 '섞임'을 출력한다. codeup.kr ▶코드 작성 #include int main() { int n, arr[100]; scanf("%d", &n); for (int i = 0; i arr[i .. 2021. 12. 3.
[코드업(codeup)/C]코드업(codeup) 1807 : 우박수 길이 (3n+1) (small) C언어 ▶문제 : 우박수 길이 (3n+1) (small) (codeup.kr) 우박수 길이 (3n+1) (small) 콜라츠의 추측, 3n+1 문제, 우박수 문제라고 불리는 이 문제는 다음과 같다. 1, 어떤 자연수 n이 입력되면, 2. n이 홀수이면 3n+1을 하고, 3. n이 짝수이면 n/2를 한다. 4. 이 n이 1이 될때까지 2~3과정을 codeup.kr ▶코드 작성 #include int main() { int a, b, num, cnt, Mnum, Mcnt = 0; scanf("%d %d", &a, &b); for (int i = a; i Mcnt)//연산 횟수가 가장 길 때 { Mcnt = cnt; Mnum = i; } } printf("%d %d", Mnum, Mcnt); return 0; } ▶.. 2021. 12. 2.
[코드업(codeup)/C]코드업(codeup) 2641 : 숏다리의 계단 오르기 (Small) C언어 ▶문제 : 숏다리의 계단 오르기 (Small) (codeup.kr) 숏다리의 계단 오르기 (Small) * 4개의 계단을 오르는 방법은 - 1 1 1 1 - 1 1 2 - 1 2 1 - 2 1 1 - 2 2 - 1 3 - 3 1 codeup.kr ▶코드 작성 #include int cnt;//경우의 수 int N;//입력 값 void fuc(int n, int t) { if (t > 0) t--;//3계단을 올랐을 때 두 번 턴을 셀 때 사용 if (N == n) cnt++; else if (N > n)//N보다 n이 작을 때 { if (t == 0) fuc(n + 3, 3);//3계단을 오를 때 t=3을 하여 턴을 준다. fuc(n + 2, t);//두 칸 오를 때 fuc(n + 1, t);//한 칸 .. 2021. 11. 29.
[코드업(codeup)/C]코드업(codeup) 2411 : SNS만들기 (1) C언어 ▶문제 : SNS 만들기 (1) (codeup.kr) SNS만들기 (1) 10 Addison,F,18,Sharon,Kimberly,Joshua Clara,F,17,Addison,Brittany,Mary,Sharon Anthony,M,18,Kyle,Mary Andrew,M,18,Sharon,Clara Mary,F,17,Clara Sharon,F,17,Mary,Addison,Kyle Kimberly,F,17,Addison,Brittany,Anthony,Mary,Andrew Kyle,M,17,Mary,Brittany,Addison codeup.kr ▶코드 작성 #include #include int main() { char str[150][101], *p; int n, i, MF[2] = {0, 0}; sca.. 2021. 11. 27.
728x90