1. (1)
2. (1)
3. (2), (3)
4.
(a)
if( (speed >= 60) && (speed <= 100) )
printf("정상 속도 \n");
(b)
if( x > 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>10 && x<20)
printf("%d\n", x);
b. if(x<10 || x>20)
printf("%d\n", x);
7.
(a)
0
1
(b)
c
8.
(a) if(age>18);
-> if(age>18)
(b) if( 0 <= age <= 18 ) -> if( age>= 0 && age <=18)
(c) if( x = 0 ) -> if( x== 0 )
(d)
if( speed > 150 )
printf("벌금 9만원\n"); else (speed > 150)
printf("벌금 6만원\n"); else
printf("OK\n");
(e)
if( score > 90 )
printf("장학금\n");
printf("우등\n"); else
printf("좀더 노력하세요\n");
->
if( score > 90 ) {
printf("장학금\n");
printf("우등\n");
} else
printf("좀더 노력하세요\n");
(f)
if( x > 0 )
if( y > 0 )
printf("x와 y는 모두 양수\n"); else
printf("x가 양수가 아님.\n");
->
if( x > 0 )
if( y > 0 )
printf("x와 y는 모두 양수\n"); else
printf("x가 양수가 아님.\n");
(g)
if( age > 0 | age <= 18 )
->
if( age > 0 && age <= 18 )
(h)
int tiger=3;
switch(animal) {
case tiger:
...
}
->
switch(animal) {
case 3:
더 많은 쉽게 풀어 쓴 C언어EXPRESS 이론 솔루션
https://chuinggun.tistory.com/category/%EC%86%94%EB%A3%A8%EC%85%98%EB%AA%A8%EC%9D%8C/%EC%89%BD%EA%B2%8C%20%ED%92%80%EC%96%B4%20%EC%93%B4%20C%EC%96%B8%EC%96%B4%20Express%20%EC%9D%B4%EB%A1%A0
더 많은 쉽게 풀어 쓴 C언어EXPRESS 프로그래밍 솔루션 :
https://chuinggun.tistory.com/category/%EC%86%94%EB%A3%A8%EC%85%98%EB%AA%A8%EC%9D%8C/%EC%89%BD%EA%B2%8C%20%ED%92%80%EC%96%B4%20%EC%93%B4%20C%EC%96%B8%EC%96%B4%20Express%20%EC%8B%A4%EC%8A%B5%EB%AC%B8%EC%A0%9C
'솔루션모음 > 쉽게 풀어 쓴 C언어 Express 이론' 카테고리의 다른 글
[쉽게 풀어 쓴 C언어 Express] 8장 Exercise 해답 솔루션 답지 (0) | 2020.04.06 |
---|---|
[쉽게 풀어 쓴 C언어 Express] 7장 Exercise 해답 솔루션 답지 (0) | 2020.04.06 |
[쉽게 풀어 쓴 C언어 Express] 5장 Exercise 해답 솔루션 답지 (0) | 2020.04.06 |
[쉽게 풀어 쓴 C언어 Express] 4장 Exercise 해답 솔루션 답지 (0) | 2020.04.03 |
[쉽게 풀어 쓴 C언어 Express] 3장 Exercise 해답 솔루션 답지 (0) | 2020.04.03 |
댓글