본문 바로가기

쉽게 풀어 쓴 C언어 programming24

[쉽게 풀어 쓴 C언어 Express] 8장 Exercise 해답 솔루션 답지 1. (1) 2. (3) 3. (1), (2), (4) 4. (1) 5. (a) 1.720000 (b) 1.000000 (c) 2.000000 6.(a) 0에서 9 (b) 2에서 6 7. (a) y = log10(x) + exp(x); (b) y = sin(x) + sqrt(x*x-2.0*a) + pow(2.0, 10); 8. (a) void print_error(int n); (b) double larger_of(double x, double y); (c) void side_effect(void); 9. int f(void) ------ return 10 + 20; void g(int, int) ------ return; double h(double, int); ------- return 'a' + 1.. 2020. 4. 6.
[쉽게 풀어 쓴 C언어 Express] 6장 Exercise 해답 솔루션 답지 1. (1) 2. (1) 3. (2), (3) 4. (a) if( (speed >= 60) && (speed y ) { max = x; min = y; } else { max = y; min = x; } (b) switch(op) { case 1: printf("one"); break; case 2: printf("two"); break; case 3: printf("three"); break; } 5. (a) switch(x) { case -1: num--; break; case 1: num--; break; default: num = 0; break; } (b) if( code == 'X' ) x++; else if( code == 'Y' ) y++; else x = y = 0; 6. (a) if(x.. 2020. 4. 6.
[쉽게 풀어 쓴 C언어 Express] 5장 Exercise 해답 솔루션 답지 1. (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. 2, 3, 3 9. (a) 0 (b) 0xffff (c) 0xffff (d) x의 모든 비트가 반전된다. 10. (1) 11. 80 12. 1 13. (a) (years >= 3) && (age >= 40) && (families >= 3) (b) (age >=6) && ((height >= 150) || ((height =3.0 ) && ((toefl >=300) || (toeic>=700)) 더 많은 쉽게 풀어 쓴 C언어EXPRESS 이론 솔루션 https://chuinggun.tistory.com/category/%EC%86%94%EB%A3%A.. 2020. 4. 6.
[쉽게 풀어 쓴 C언어 Express] 4장 Exercise 해답 솔루션 답지 1. (3) 기호 상수 정의 number 변수 선언하고 long형의 상수 100으로 초기화 radius 변수를 선언하고 실수 상수 1.0e-10로 초 기화 char형 변수 ch를 선언 하고 'z'로 초기화 2. char, unsigned char, short, int, long, unsigned, float, double 3. (3) 4. (2), (5) 5. (3) 6. (3),(4) 7. (4) 8. (a) int (b) double (c) float (d) int (e) char 9. (a) 잘못없음 (b) #는 사용할 수 없는 기호 (c) 숫자로 시작할 수 없음 (d) %를 사용할 수 없음 10. (a) 0.3141592e1 (b) 0.716532e3 11. (1), (5) 12. (2), (6).. 2020. 4. 3.