Presentation is loading. Please wait.

Presentation is loading. Please wait.

4주차: Data Types and Functions

Similar presentations


Presentation on theme: "4주차: Data Types and Functions"— Presentation transcript:

1 4주차: Data Types and Functions

2 부호있는 정수 signed 계열 메모리에서의 크기 (signed) short (signed) int
(signed) long (int) 메모리에서의 크기 int: 4 bytes short <= int <= long

3 Word in Computers 워드(Word) 컴퓨터가 한 번에 처리할 수 있는 비트의 크기 예) 32-bit word 1
32 bits 1 1 CPU 1 1 1

4 int 계열의 크기 int: 4 bytes(과거에 많이 쓰이던 워드)
short(2 bytes) <= int <= long(4 bytes) type int로 표시가능한 값 에서 까지 232개의 서로 다른 값을 표현할 수 있다.

5 signed and unsigned unsigned 계열 (signed) int type의 변수가 가질수 있는 값의 범위
unsigned short unsigned (int) unsigned long (signed) int type의 변수가 가질수 있는 값의 범위 -231, , ..., -1, 0, 1, 2, ..., 231 – 1 -2,147,483,648  2,147,483,647 unsigned (int) type의 경우 0, 1, 2, 3, ..., 232 – 1 0  4,294,967,295

6 예제 프로그램 #include<stdio.h> int main(void) { int price; unsigned uprice; uprice = price = ; printf(“%d %u”, price, uprice); uprice = price = ; printf(“\n%d %u”, price, uprice); return 0; } -수행결과 데이터 타입이 가질 수 있는 최대값의 범위를 넘어가는 값을 할당해도 컴파일 에러는 나지 않는다. %u: unsigned int의 출력

7 ASCII 코드와 char #include<stdio.h> int main(void) { char alphabet;
for(alphabet = ‘A’; alphabet <= ‘Z’; alphabet++) printf(“%c: %d\n”, alphabet, alphabet); return 0; } - 수행결과 A: 65 B: 66 C: 67 ... Z: 90 char 변수 alphabet에 ‘A’를 할당하면 alphabet 변수에는 65의 이진수 값이 들어간다. printf() 함수 안의 %c, %d는 단지 alphabet의 값을 출력하는 방법만 지정해 주는 것이다.

8 실수계열 데이터 타입 float, double, long double 복잡한 실수의 계산은 정확하지 않다.
float: 4 bytes double: 8 bytes long double >= double 복잡한 실수의 계산은 정확하지 않다. 간단한 경우에는 크게 문제가 되지 않는다.

9 float/double 표현범위 0.dddddddd * 10n (d는 십진수) float Double 유효숫자 (d의 개수)
6 15 범위 (n) -38 ~ 38 -308 ~ 308 메모리 4 바이트 8 바이트

10 Double의 메모리 크기 8 byte Log2(106) + log2(308*2+1) = = 대략 60비트 필요

11 sizeof 연산자(1/3) sizeof(object) object의 크기를 바이트 단위로 알려준다.
#include<stdio.h> int main(void) { printf(“The size of some fundamental types is computed. \n\n”); printf(“ char:%3u byte \n”, sizeof(char)); printf(“ short:%3u bytes \n”, sizeof(short)); printf(“ int:%3u bytes \n”, sizeof(int)); printf(“ long:%3u bytes \n”, sizeof(long));

12 sizeof 연산자(2/3) printf(“ unsigned:%3u bytes \n”, sizeof(unsigned));
printf(“ float:%3u bytes \n”, sizeof(float)); printf(“ double:%3u bytes \n”, sizeof(double)); printf(“long double:%3u bytes \n”, sizeof(long double)); return 0; }

13 sizeof 연산자(3/3) 수행결과

14 Keywords Keywords Keyword의 예 C언어에 미리 정의되어 있는 단어들 변수이름으로 사용할 수 없다.
if, signed, int, float, for, while, ...

15 상수(Constants) 정수상수 실수상수 문자상수 1, 37, 74, ... 1.0, 37.0, 74.9, ...
‘A’, ‘b’, ‘0’, ‘+’, ... 문자상수는 프로그램에서 작은따옴표(‘’)로 묶인다. ‘0’은 문자상수, 0은 정수상수이다.

16 문자열 상수(String Constants)
0개 이상의 문자(Character)로 이루어진다. “This is a string.”, “I am a boy.”, ... 문자열 상수는 프로그램에서 큰따옴표(“”)로 묶인다. “A”와 ‘A’는 서로 다르다.

17 연산자(Operators) 산술연산자(Arithmetic operators) 할당연산자(Assignment operators)
+, -, *, /, %(나머지 연산자) 할당연산자(Assignment operators) =, +=, -=, *=, /=, %=, ... 증감연산자(Increment and decrement operators) ++, --

18 % 연산자 예제 프로그램 - 이 프로그램은 1 – 100사이의 정수 중 17의 배수를 출력한다.
#include<stdio.h> int main(void) { int i; for(i = 1; i <= 100; i++){ if(i % 17 == 0) printf(“%d is a multiple of 17.\n”, i); } return 0; - 이 프로그램은 1 – 100사이의 정수 중 17의 배수를 출력한다.

19 증감 연산자 예제 프로그램 증감연산자는 2가지의 형태로 쓰인다.
#include<stdio.h> int main(void) { int a, b, c = 0; a = ++c; b = c++; printf(“%d %d %d\n”, a, b, ++c); return 0; } 증감연산자는 2가지의 형태로 쓰인다. prefix 형: ++c, 문(statement)을 수행하기 전에 c = c + 1을 행한다. postfix 형: c++, 문을 수행한 후에 c = c + 1을 행한다. 예제의 출력결과는 1, 1, 3 이다.

20 관계연산자(Relational and Equality Operators)
Relational Operators <, >, <=, >= Equality Operators ==(equal to), !=(not equal to)

21 Operator Precedence and Associativity
연산의 순서 Associativity 연산의 방향 C 언어는 모든 연산자들의 우선순위 및 associativity를 정해 놓고 있다. 계산순서를 확실히 하려면 괄호를 사용하라.

22 할당 연산자(Assignment Operators)
할당연산자 =, +=, -=, *=, ... += a = a + 1은 a += 1과 동등한 표현이다. *= a = a * 1은 a *= 1과 동등하다.

23 수식의 값 C의 모든 수식은 값을 가진다. 수식의 값은 그 수식이 계산된 결과이다. 수식 a + 1의 값은?
a에 3보다 큰 값이 들어 있는 경우 이 수식의 값은 1(참, TRUE)이다. a에 3보다 작거나 같은 값이 들어 있는 경우 이 수식의 값은 0(거짓, FALSE)이다.

24 관계 수식의 값 예제 프로그램 -이 프로그램의 수행결과는 1 1 3 1 이다. #include<stdio.h>
int main(void) { int a, b, c = 0; a = ++c; b = c++; printf(“%d %d %d\n”, a, b, ++c); printf(“%d\n”, a > 3); printf(“%d\n”, a <= 3); return 0; } -이 프로그램의 수행결과는 1 1 3 1 이다.

25 할당 수식의 값 할당 수식의 값은 왼쪽의 변수에 저장된 값이다. a = 1의 값은 1 b = 0의 값은 0
c = 34의 값은 34

26 할당수식의 값 예제 프로그램 이 프로그램의 결과는 항상 This number is odd. 이다. j = 0 수식의 값은? 0
#include<stdio.h> int main(void) { int i, j; scanf(“%d”, &i); j = i % 2; if(j = 0) printf(“This number is even.\n”); else printf(“This number is odd.\n”); return 0; } 이 프로그램의 결과는 항상 This number is odd. 이다. j = 0 수식의 값은? 0 따라서 if의 조건식은 항상 0(거짓)이다.

27 교재에서 강의와 연관된 부분 2장 2.1, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 2.10, 2.11 3장 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.8 4장 4.1, 4.2, 4.3

28 과제2( - 5. 9) 다음의 수열을 계산하는 프로그램을 작성하라. 프로그램의 수행과정 1. 정수를 하나 키보드로 입력받는다.
2. 이 정수가 0보다 작으면 1로 돌아간다. 3. 입력받은 정수번째에 해당하는 수열의 값을 출력한다. 4. 프로그램을 종료한다.

29 과제 2 제출 항목 이메일로 제출 보고서 소스코드, 보고서, (오브젝트 파일및 실행파일은 제외)
컴파일 방법(컴파일러, 운영체제) 간단한 소스코드 설명


Download ppt "4주차: Data Types and Functions"

Similar presentations


Ads by Google