본문 바로가기
솔루션모음/쉽게 풀어 쓴 C언어 Express 이론

[쉽게 풀어 쓴 C언어 Express] 3장 Exercise 해답 솔루션 답지

by 이얏호이야호 2020. 4. 3.

1. (3)

2. (1), (2)

3. (3)

 

4. (2)

 

 

5. (3)

 

6.

#include <stdio.h> //헤더파일 포함

int main(void) //main() 함수 선언____

{

int x, y; //변수 선언_____________________________________

scanf("%d %d", &x, &y); //사용자로부터 값을 받아서 x와 y에 저장

printf("덧셈: %d\n", x + y); //x+y의 값을 정수형식으로 출력_____ printf("뺄셈: %d\n", x - y); //x-y의 값을 정수형식으로 출력

printf("곱셈: %d\n", x * y); //x*y의 값을 정수형식으로 출력

printf("나눗셈: %d\n", x / y); //x/y의 값을 정수형식으로 출력

}

7.

#include <stdio.h>

int main(void)

{

float inch, mm;

printf("인치 단위로 입력:“);

scanf("%f", &inch);

mm = inch * 25.4;

printf("%f 인치= %f mm", inch, mm);

return 0;

}

 

 

 

 

 

8.

/* 첫번째 프로그램 /* /* 첫번째 프로그램 */

#include stdio,h #include <stdio.h>

integer main(void) int main(void)

{

int x int x;

int y int y;

int prod int prod;

scanf(“%d”, x); scanf(“%d”, &x);

scanf(“%d”, y); scanf(“%d”, &y);

prod = xy; prod = x*y;

print(곱셈의 결과= %f, prod ); printf("곱셈의 결과= %f", prod );

return 0;

}

9.

(a)

It`s never too late.

It never rains but it pours

(b)

Love is blind.

(c)

It`s never too late./n It never rains but it pours

(d)

10

(e)

30

(f)

10 + 20 = 30

(g)

10 * 20 = 200

(h)

*

**

***

****

 

더 많은  쉽게 풀어 쓴 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

댓글