728x90
728x170
쉽게 풀어 쓴 C언어 Express 3장 Exercise 문제
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>
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)
*
**
***
****
728x90
그리드형
'IT > 프로그래밍' 카테고리의 다른 글
쉽게 풀어 쓴 C언어 Express 5장 Exercise 문제 (0) | 2020.12.05 |
---|---|
쉽게 풀어 쓴 C언어 Express 4장 Exercise 문제 (0) | 2020.12.05 |
쉽게 풀어 쓴 C언어 Express 2장 Exercise 문제 (0) | 2020.12.05 |
쉽게 풀어 쓴 C언어 Express 1장 Exercise 문제 (0) | 2020.12.05 |
C언어 코딩 도장 연습문제 12.4 (0) | 2020.12.04 |
댓글