-
Notifications
You must be signed in to change notification settings - Fork 0
/
3장요약예제_학생배포용_utf8.txt
78 lines (60 loc) · 1.51 KB
/
3장요약예제_학생배포용_utf8.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[솔루션 이름]Ch3_sol_****
[프로젝트 이름]ex1_project
[소스이름] ex1.c
//[예제1] 덧셈 프로그램 #1
/* 두개의 숫자의 합을 계산하는 프로그램 */
#include <stdio.h>
main(void)
{
int x;
int y;
int sum;
x = 100;
y = 200;
sum = x + y;
printf("두수의 합: %d", sum);
return 0;
}
==================================
[솔루션 이름]Ch3_sol_****
[프로젝트 이름]ex2_project
[소스이름] ex2.c
//[예제2] 덧셈 프로그램 #2
// 사용자로부터 입력받은 2개의 정수의 합을 계산하여 출력
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int main(void)
{
int x;
int y;
int sum;
printf("첫번째 숫자를 입력하시오:");
scanf("%d", &x);
printf("두번째 숫자를 입력하시오:");
scanf("%d", &y);
sum = x + y;
printf("두수의 합: %d", sum);
return 0;
}
==================================
[솔루션 이름]Ch3_sol_****
[프로젝트 이름]quiz0_project
[소스이름] quiz0.c
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int main(void)
{
char c;
int x;
float y;
double sum;
scanf("%c", &c);
printf("받은 문자 : %c \n", c);
printf("정수와 실수의 값을 순서대로 입력하세요!\n");
scanf("%d", &x);
scanf("%f", &y);
scanf("%lf", &sum);
printf("각 수의 값 : %d , %f, %f \n", x, y, sum);
return 0;
}
==================================