쉽게 풀어쓴13 [쉽게 풀어쓴 C언어 Express 개정4판] 6장 Exercise & Programming 6장 Exercise & ProgrammingExercise 문제1. 1번2. 1번3. 2,3번4. aif(speed >= && (speed bif (x > y){ max = x; min = y;}else{ max = y; min = x;}cswitch(op){ case 1: printf(“one”); break; case 2: printf(“two”); break; case 3: printf(“three”); break;}5. aswitch (x){ case -1: num--; break; case 1: num--; break; default: num = 0; break;}bif (code == 'X') { x++;} else if (code == 'Y') { y++;} else .. 프로그래밍/C언어 2024. 2. 11. [쉽게 풀어쓴 C언어 Express 개정4판] 5장 Exercise & Programming 5장 Exercise & Programming5장 Exercise1. 2번2. 3번3. 1번4. 2번 5. a. 1.5 b. 1.0 c. 1.5 d. 1.5 6. 3번7. -2, 3, 1, 1 8. #define _CRT_SECURE_NO_WARNINGS 부재 9. 2, 3, 3 10. a. 0 b. 0xffff c. 0xffff d. 0xeeee 11. 1번12. 8013. 1번 14. a. (years >= 3) && (age >= 40) && (family_members >= 3) b. (age >=6) && ((height >= 150) || ((height c. (gap >=3.0) && ((toefl >= 300) || .. 프로그래밍/C언어 2024. 2. 10. [쉽게 풀어쓴 C언어 Express 개정4판] 3장 Exercise & Programming 3장 Exercise & ProgrammingExercise 문제 1. 3번2. 1,2번3. 3번4. 2번5. 4번 6. 헤더파일 포함 main() 함수 선언 변수 x, y 선언 사용자로부터 값을 받아서 x와 y에 저장 x+y의 값을 정수형식으로 출력 x-y의 값을 정수형식으로 출력 x*y의 값을 정수형식으로 출력 x/y의 값을 정수형식으로 출력 7. &inch 8. */ int ; ; ; &x &y x*y; “곱셈의 결과= %f” 9. a. It’s never too late it never rains but it pours b. 10 c. 30 d. 10 + 20 = 30 e.. 프로그래밍/C언어 2024. 2. 10. 이전 1 2 다음