Size: px
Start display at page:

Download ""

Transcription

1

2

3 Chapter 1

4 Chapter 2 21 printf("this is my first program\n"); printf("\n"); printf(" \n"); printf("this is my second program\n"); printf(" \n"); 22 int a, b, c; a = 1; b = 2; c = a + b; printf("a=%d b=%d c=%d\n", a, b, c); 23 int a, b, c; printf("please enter two numbers:");

5 scanf("%d %d", &a, &b); c = a + b; printf("\na=%d b=%d c=%d", a, b, c); 24 int i, n; printf("\nplease enter number:"); scanf("%d", &n); printf("\n"); printf("yes "); printf("\n print %d many yes",n); int i, n; printf("\nplease enter number:"); scanf("%d", &n); printf("\n"); printf("%d", i); printf("\n print the numbers from 0 to %d", n-1); 241 for 1 for(i=0;i<10;i++) printf("yes "); for(i=0;i<100;i++) printf("happy "); for(i=0;i<1000;i++) printf("laugh "); 242 for 2

6 printf("yes "); 0 i=0; 1 i<n; 0<3, 2 printf("yes "); 3 i++ i 1 i=1 4 i<n; 1<3, 5 printf("yes "); 6 i++ i 1 i=2 7 i<n; 2<3, 8 printf("yes "); 9 i++ i 1 i=3 10 i<n; 3<3, 11 for 243 for 3 printf("yes "); for( ; ; ) 244 for 4 printf("%d", i); 0 i=0; 1 i<n; 0<3, 2 printf("%d", i); 0 3 i++ i 1 i=1 4 i<n; 1<3, 5 printf("%d", i); 1 6 i++ i 1 i=2 7 i<n; 2<3, 8 printf("%d", i); 2 9 i++ i 1 i=3

7 10 i<n; 3<3, 11 for 25 int i, n; printf("\nplease enter number:"); scanf("%d", &n); printf("%d", i+1); int i, j, n; printf("\nplease enter number:"); scanf("%d", &n); for(j=0;j<n;j++) printf("%4d", j+1); printf("\n"); 251 for int i, j, n; 5 6 printf("\nplease enter number:"); 7 scanf("%d", &n); for(j=0;j<n;j++) 13 printf("%4d", j+1); 14 printf("\n"); : for?

8 : : 5? : C ( ) : for? : for for :? : 252 for int i, j, n; 5 6 printf("\nplease enter number:"); 7 scanf("%d", &n); for(j=0;j<n;j++) 13 printf("%4d", j+1); 14 printf("\n"); for : i=0 i 0 : i<3 : for : j=0 j 0 : j<3 : printf("%4d", j+1); 1 : j++ j 1 : j<3 : printf("%4d", j+1); 2 : j++ j 2 : j<3 : printf("%4d", j+1); 3 : j++ j 3 j<3 for (12 ) 14 printf("\n"); (11-15 ) : i++ i 1 : i<3 : for

9 : j=0 j 0 : j<3 : printf("%4d", j+1); 1 : j++ j 1 : j<3 : printf("%4d", j+1); 2 : j++ j 2 : j<3 : printf("%4d", j+1); 3 : j++ j 3 j<3 for (12 ) 14 printf("\n"); (11-15 ) : i++ i 2 : i<3 : for : j=0 j 0 : j<3 : printf("%4d", j+1); 1 : j++ j 1 : j<3 : printf("%4d", j+1); 2 : j++ j 2 : j<3 : printf("%4d", j+1); 3 : j++ j 3 j<3 for (12 ) 14 printf("\n"); (11-15 ) : i++ i 3 : i<3 for (10 ) int i, j, n; printf("\nplease enter number:"); scanf("%d", &n); for(j=0;j<n;j++) printf("%4d", j+1); printf("\n");

10 27 int i, j, k, n; printf("\nplease enter number:"); scanf("%d", &n); k = 1; for(j=0;j<n;j++) printf("%4d", k++); printf("\n"); 28 int i, j, n; printf("\nplease enter number:"); scanf("%d", &n); for(j=0;j<i+1;j++) printf("%4d", j+1); printf("\n"); int i, j, n; printf("\nplease enter number:"); scanf("%d", &n); for(j=0;j<n-i;j++) printf("%4d", j+1); printf("\n");

11 281 for int i, j, k, n; 5 6 printf("\nplease enter number:"); 7 scanf("%d", &n); 9 10 k=1; for(j=0;j<n;j++) 14 printf("%4d", k++); 15 printf("\n"); k=1; k 1 11 for : i=0 i 0 : i<3 : for : j=0 j 0 : j<3 : printf("%4d", k++); 1 k 2 : j++ j 1 : j<3 : printf("%4d", k++); 2 k 3 : j++ j 2 : j<3 : printf("%4d", k++); 3 k 4 : j++ j 3 j<3 for (13 ) 15 printf("\n"); (12-16 ) : i++ i 1 : i<3 : for : j=0 j 0 : j<3 : printf("%4d", k++); 4 k 5 : j++ j 1 : j<3 : printf("%4d", k++); 5 k 6 : j++ j 2 : j<3 : printf("%4d", k++); 6 k 7 : j++ j 3 j<3 for (13 )

12 15 printf("\n"); (12-16 ) : i++ i 2 : i<3 : for : j=0 j 0 : j<3 : printf("%4d", k++); 7 k 8 : j++ j 1 : j<3 : printf("%4d", k++); 8 k 9 : j++ j 2 : j<3 : printf("%4d", k++); 9 k 10 : j++ j 3 j<3 for (13 ) 15 printf("\n"); (12-16 ) : i++ i 3 : i<3 for (11 ) for int i, j, n; 5 6 printf("\nplease enter number:"); 7 scanf("%d", &n); for(j=0;j<i+1;j++) 12 printf("%4d", j+1); 13 printf("\n");

13 for int i, j, n; 5 6 printf("\nplease enter number:"); 7 scanf("%d", &n); for(j=0;j<n-i;j++) 12 printf("%4d", j+1); 13 printf("\n");

14 Chapter 3

15 Chapter

16

17 Chapter 5 ***** ***** ***** ***** ***** * ** *** **** ***** * ** *** **** ***** * *** ***** ******* ********* * *** ***** ******* ********* ******* ***** *** *

18 * * *** *** ***** ***** ******* ******* ****************** ******* ******* ***** ***** *** *** * * [ n, 2-8 ] * ********* * *** *********** *** ***** ************* ***** ******* *************** ******* *********************************** [ 2*n ] * *** ***** ******* ********* * *********** * *** ************* *** ***** *************** ***** ******* ***************** ******* ************************************* $$$$$$$ $*****$ $*****$ $*****$ $*****$ $*****$ $$$$$$$ [ n+2 + n+1 = 2*n + 3 ] [ *2 ] [ *1 ] * ** *@* *@@* *@@@* *@@@@* *@@@@@* *@@@@* *@@@* *@@* *@* ** *

19 int i, j, n; printf("\nplease enter number:"); scanf("%d", &n); for(j=0;j<n;j++) printf("*"); printf("\n");

20 Chapter 6 61 int a[30][30]; int i, j, k, n; printf("\nplease enter number:"); scanf("%d", &n); k=0; for(j=0;j<n;j++) a[i][j] = k++; for(j=0;j<n;j++) printf("%4d", a[i][j]); printf("\n");

21 ( ) 4 5 a[ 0][ 0], a[ 0][ 1], a[ 0][ 2], a[ 0][ 3],,,, a[ 0][28], a[ 0][29], a[ 1][ 0], a[ 1][ 1], a[ 1][ 2], a[ 1][ 3],,,, a[ 1][28], a[ 1][29], a[ 2][ 0], a[ 2][ 1], a[ 2][ 2], a[ 2][ 3],,,, a[ 2][28], a[ 2][29], a[29][ 0], a[29][ 1], a[29][ 2], a[29][ 3],,,, a[29][28], a[29][29] int a[30][30]; 5 int i, j, k, n; 6 7 printf("\nplease enter number:"); 8 scanf("%d", &n); 9 10 k=0; for(j=0;j<n;j++) 13 a[i][j] = k++; for(j=0;j<n;j++) 18 printf("%4d", a[i][j]); 19 printf("\n"); 20

22 int a[30][30]; int i, j, k, n; printf("\nplease enter number:"); scanf("%d", &n); for(j=0;j<n;j++) a[i][j]=j+1; // [A] for(j=0;j<n;j++) printf("%4d", a[i][j]); printf("\n"); : a[i][j]=i+1; : a[i][j]=i+j+1; : a[i][j]=i-j; : a[i][j]=j-i; : a[i][j]=(i+1)*(j+1); 63 int a[30][30]=0,; int i, j, k, n; printf("\nplease enter number:"); scanf("%d", &n); a[i][i]=i+1; // [A] for(j=0;j<n;j++)

23 printf("%4d", a[i][j]); printf("\n"); : a[i][i]=n-i; : a[0][i]=i+1; : a[n-1][i]=i+1; : a[i][0]=i+i; : a[i][n-1]=i+1; : a[i][n-i-1]=i+1; 64 int a[30][30]=0,; int i, j, k, n; printf("\nplease enter number:"); scanf("%d", &n); k=0; a[i][i]=k++; // [A] for(j=0;j<n;j++) printf("%4d", a[i][j]); printf("\n"); : a[0][i]=k++; : a[n-1][i]=k++; : a[i][0]=k++; : a[i][n-1]=k++; : a[i][n-i-1]=k++; : a[n-i-1][i]=k++; 65 int a[30][30]=0,; int i, j, k, n; printf("\nplease enter number:"); scanf("%d", &n); k=0;

24 for(j=0;j<n;j++) a[i][j]=k++; // [A] for(j=0;j<n;j++) printf("%4d", a[i][j]); printf("\n"); : a[j][i]=k++; : a[i][n-j-1]=k++; : a[n-i-1][j]=k++; : a[n-i-1][n-j-1]=k++; : a[j][n-i-1]=k++; : a[n-j-1][i]=k++; 66 int i, n; printf("\nplease enter number:"); scanf("%d", &n); if((i%2)==0) printf("\ni=%d is even number", i); else printf("\ni=%d is odd number", i); // // 67 int a[30][30]; int i, j, n; printf("\nplease enter number:"); scanf("%d", &n); for(j=0;j<n;j++) if(i==j) a[i][j]=9; else a[i][j]=1;

25 for(j=0;j<n;j++) printf("%4d", a[i][j]); printf("\n"); int a[30][30]; int i, j, n; printf("\nplease enter number:"); scanf("%d", &n); for(j=0;j<n;j++) if(i>j) a[i][j]=9; else a[i][j]=1; for(j=0;j<n;j++) printf("%4d", a[i][j]); printf("\n"); if((i%2)==0) % i%2 i 2 i 0, 1 if((i%2)==0) i

26

27 Chapter 7 (2 ) number = number = number = number = number =

28 number = number = number = number = number = number =

29 number = number = 3 : number = 5 : (3X3, 5x5) x3 1 a[0][1] 2 a[-1][2] -1 a[2][2] 3 a[1][3] 3 a[1][0] 4 a[0][1] a[2][0] 5 a[1][1] 6 a[0][2] 7 a[-1][3] -1, 3 a[2][0] a[0][2] a[1][2] 8 a[0][3] 3 a[0][0]

30 9 a[-1][1] a[2][1]

31 Chapter 8 - int i, n; printf("\nplease enter number:"); scanf("%d", &n); i=0; while(i<n) printf("\ni=%4d", i); i++; printf("\ni=%4d", i); while( ) ; int a[100]=1, 2, 3, 4, 5, 6, 7, 8, 9, 10, ; int i, n; printf("\nprint the contents of array a[]"); i=0; while(a[i]>0) printf("%4d", a[i]); i++; int a[100]=11, 12, 13, 14, 15, 6, 7, 8, 9, 10, ; int i, n; printf("\nprint the contents of array a[]");

32 i=0; while(a[i]>0) if(a[i]>10) printf("big "); else printf("small "); i++; int a[100]=11, 12, 13, 14, 15, 6, 7, 8, 9, 10, ; int i, n; printf("\nprint the contents of array a[]"); i=0; while(1) if(a[i]<=0) break; if(a[i]>10) printf("big "); else printf("small "); i++; int a[100]=11, 12, 13, 14, 15, 6, 7, 8, 9, 10, ; int b[100]=0,; int i, n; i=0; while(a[i]>0) b[i]=a[i]; i++; // a[] b[] printf("\nprint the contents of array b[]"); i=0; while(b[i]>0) printf("%4d", b[i]); i++;

33

34 Chapter 9 (1 ) for(i=0;i<1000;i++) a[i]=i; a[] 0 4, 6, 8, 10, 12, 14,,,, , 9, 12, 15, 18, 21,,,, , 15, 20, 25, 30, 35,,,, , 21, 28, 35, 42, 27,,,,

35 a[2]=5; a[3]= a[4]= a[5]= a[6]=

36 Chapter 10 FILE *fin; char finname[80]; int c; printf("\nplease enter File name:"); scanf("%s", finname); fin = fopen(finname, "r"); c = fgetc(fin); while(c!= EOF) printf("%c", c); c = fgetc(fin); fclose(fin); c = fgetc(fin); while(c!= EOF) printf("%c", c); c = fgetc(fin);

37 unsigned char a, b, c; a = 'A'; b = 'B'; c = 'C'; printf("\n%c %c %c ", a, b, c); A B C printf("\n%d %d %d ", a, b, c); unsigned char a, b, c; a = 65; b = 66; c = 67; printf("\n%c %c %c ", a, b, c); FILE *fin, *fout; char finname[80]; char foutname[80]; int c;

38 printf("\nplease enter input file name:"); scanf("%s", finname); printf("\nplease enter output file name:"); scanf("%s", foutname); fin = fopen(finname, "rb"); if(fin==null) printf("\ncannot open file:%s", finname); exit(1); fout = fopen(foutname, "wb"); if(fout==null) printf("\ncannot open file:%s", foutname); exit(1); c = fgetc(fin); while(c!= EOF) fputc(c, fout); c = fgetc(fin); fclose(fin); fclose(fout); E 63 6C C F 2E 68 # i n c l u d e < s t d i o h 3E 0D 0A 69 6E D E D 0A 7B > i n t m a i n ( ) 0D 0A E C 20 6E 3B 0D i n t i, n ; 0A int i, n;

39 FILE *fin; char fname[80]; int c; printf("\nplease enter input file name:"); scanf("%s", fname); fin = fopen(fname, "rb"); if(fin==null) printf("\ncannot open file:%s", fname); exit(1); c = fgetc(fin); while(c!= EOF) printf("%02x ", c); c = fgetc(fin); fclose(fin);

40 Chapter 11 >hoidts<edulcni# )(niam tni ;n, j, i tni int i, j, n; # i i n n t c l m i u a n d i t e n < ( i s ), t d j i, o n h ; > $$$ $$$ $$$ int i, j, k;$$$int a[10]=0,; #include<stidoh>$$$>hoidts<edulcni# $$$)(niam tni $$$ int i, j, k;$$$;,0=]01[a tni ( isprint ) E 63 6C C F 2E 68 #include<stdioh

41 E 0D 0A 69 6E D E D 0A 7B > D 0A E C 6A 2C 6E 2C 6B int i,j,n,k C 6C 3B 0D 0A E B 33 30,l; int a[ D 5B D 3D 7B 30 2C 7D 3B 0D 0A 0D 0A 20 ][30]=0,; E E 75 6D printf("number D B 0D 0A 0D 0A E 66 ="); scanf C 26 6E 29 3B 0D 0A 0D 0A ("%d",&n); F D 30 3B 69 3C 6E 3B 69 2B 2B for(i=0;i<n;i D 0A B 0D 0A ) f 0000A0 6F A 3D 30 3B 6A 3C 6E 3B 6A 2B 2B 29 0D or(j=0;j<n;j++) 0000B0 0A B 0D 0A B 69 5D a[i] D 0D 0A 0D 0A retur E B 0D 0A 7D 0D 0A n 0; FILE *fin; char fname[80]; unsigned char line[100]; int c; printf("\nplease enter file name:"); scanf("%s", fname); fin = fopen(fname, "rb"); if(fin == NULL) printf("\ncannot open file: %s", fname); exit(1); c = fgetc(fin); while(c! = EOF) if(c!= 13) else 13 0D 0D 0A c = fgetc(fin); while fclose(fin); c = fgetc(fin); while(c!= EOF) c = fgetc(fin); if(c!= 13)

42 else 13 ( 0D) 0A FILE *fin1, fin2; char fname1[80], fname2[80]; unsigned char line[100]; int c, d; printf("\nplease enter file name:"); scanf("%s", fname1); printf("\nplease enter file name:"); scanf("%s", fname2); fin1 = fopen(fname1, "rb"); if(fin1 == NULL) printf("\ncannot open file: %s", fname1); exit(1); fin2 = fopen(fname1, "rb"); if(fin2 == NULL) printf("\ncannot open file: %s", fname2); exit(1); c = 0; d = 0; while((c!= EOF) && (d!= EOF)) c = fgetc(fin1); while((c! = EOF)&&(c!= 13)) c = fgetc(fin1); // while loop EOF 13 if(c!= EOF) 13 0D 0D 0A else // d = fgetc(fin2); while((2! = EOF)&&(2!= 13)) d = fgetc(fin2); // while loop EOF 13 if(c!= EOF) 13 0D 0D 0A else //

43 file1 file2 fclose(fin1); fclose(fin2);

44 Chapter 12 // oneline int oneline(int n) int i; printf("%4d", i+1); int i, n; printf("\nplease enter number:"); scanf("%d", &n); oneline(i+1); // oneline printf("\n"); int i, j, n; printf("\nplease enter number:"); scanf("%d", &n); for(j=0;j<i+1;j++) printf("%4d", j+1); printf("\n"); int factorial(int n)

45 int i, fact; fact = 1; for(i=2;i<=n;i++) fact = i*fact; return fact; int square(int n) return n*n; int n; printf("\nplease enter number:"); scanf("%d", &n); printf("\nnumber=%4d factorial = %4d square = %4d ", n, factorial(n), square(n));

46 Chapter 13 # #### # # # # ## # # #

47 Chapter 14 -C/C++,

48 Chapter 15 -?

49 Chapter 16

Java

Java Java http://cafedaumnet/pway Chapter 1 1 public static String format4(int targetnum){ String strnum = new String(IntegertoString(targetNum)); StringBuffer resultstr = new StringBuffer(); for(int i = strnumlength();

More information

歯9장.PDF

歯9장.PDF 9 Hello!! C printf() scanf() getchar() putchar() gets() puts() fopen() fclose() fprintf() fscant() fgetc() fputs() fgets() gputs() fread() fwrite() fseek() ftell() I/O 2 (stream) C (text stream) : `/n'

More information

untitled

untitled if( ) ; if( sales > 2000 ) bonus = 200; if( score >= 60 ) printf(".\n"); if( height >= 130 && age >= 10 ) printf(".\n"); if ( temperature < 0 ) printf(".\n"); // printf(" %.\n \n", temperature); // if(

More information

1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 #define _CRT_SECURE_NO_WARNINGS #include #include main() { char ch; printf(" 문자 1개를입력하시오 : "); scanf("%c", &ch); if (isalpha(ch))

More information

untitled

untitled while do-while for break continue while( ) ; #include 0 i int main(void) int meter; int i = 0; while(i < 3) meter = i * 1609; printf("%d %d \n", i, meter); i++; return 0; i i< 3 () 0 (1)

More information

chap7.key

chap7.key 1 7 C 2 7.1 C (System Calls) Unix UNIX man Section 2 C. C (Library Functions) C 1975 Dennis Ritchie ANSI C Standard Library 3 (system call). 4 C?... 5 C (text file), C. (binary file). 6 C 1. : fopen( )

More information

13주-14주proc.PDF

13주-14주proc.PDF 12 : Pro*C/C++ 1 2 Embeded SQL 3 PRO *C 31 C/C++ PRO *C NOT! NOT AND && AND OR OR EQUAL == = SQL,,, Embeded SQL SQL 32 Pro*C C SQL Pro*C C, C Pro*C, C C 321, C char : char[n] : n int, short, long : float

More information

03장.스택.key

03장.스택.key ---------------- DATA STRUCTURES USING C ---------------- 03CHAPTER 1 ? (stack): (LIFO:Last-In First-Out) 2 : top : ( index -1 ),,, 3 : ( ) ( ) -> ->. ->.... 4 Stack ADT : (LIFO) : init():. is_empty():

More information

중간고사

중간고사 중간고사 예제 1 사용자로부터받은두개의숫자 x, y 중에서큰수를찾는알고리즘을의사코드로작성하시오. Step 1: Input x, y Step 2: if (x > y) then MAX

More information

untitled

untitled int i = 10; char c = 69; float f = 12.3; int i = 10; char c = 69; float f = 12.3; printf("i : %u\n", &i); // i printf("c : %u\n", &c); // c printf("f : %u\n", &f); // f return 0; i : 1245024 c : 1245015

More information

int main(void) int a; int b; a=3; b=a+5; printf("a : %d \n", a); printf("b : %d \n", b); a b 3 a a+5 b &a(12ff60) &b(12ff54) 3 a 8 b printf(" a : %x \

int main(void) int a; int b; a=3; b=a+5; printf(a : %d \n, a); printf(b : %d \n, b); a b 3 a a+5 b &a(12ff60) &b(12ff54) 3 a 8 b printf( a : %x \ ? 1 int main(void) int a; int b; a=3; b=a+5; printf("a : %d \n", a); printf("b : %d \n", b); a b 3 a a+5 b &a(12ff60) &b(12ff54) 3 a 8 b printf(" a : %x \n", &a); printf(" b : %x \n", &b); * : 12ff60,

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 @ Lesson 3 if, if else, if else if, switch case for, while, do while break, continue : System.in, args, JOptionPane for (,, ) @ vs. logic data method variable Data Data Flow (Type), ( ) @ Member field

More information

Microsoft PowerPoint - chap05-제어문.pptx

Microsoft PowerPoint - chap05-제어문.pptx int num; printf( Please enter an integer: "); scanf("%d", &num); if ( num < 0 ) printf("is negative.\n"); printf("num = %d\n", num); 1 학습목표 제어문인,, 분기문에 대해 알아본다. 인 if와 switch의 사용 방법과 사용시 주의사항에 대해 알아본다.

More information

0. 표지에이름과학번을적으시오. (6) 1. 변수 x, y 가 integer type 이라가정하고다음빈칸에 x 와 y 의계산결과값을적으시오. (5) x = (3 + 7) * 6; x = 60 x = (12 + 6) / 2 * 3; x = 27 x = 3 * (8 / 4

0. 표지에이름과학번을적으시오. (6) 1. 변수 x, y 가 integer type 이라가정하고다음빈칸에 x 와 y 의계산결과값을적으시오. (5) x = (3 + 7) * 6; x = 60 x = (12 + 6) / 2 * 3; x = 27 x = 3 * (8 / 4 Introduction to software design 2012-1 Final 2012.06.13 16:00-18:00 Student ID: Name: - 1 - 0. 표지에이름과학번을적으시오. (6) 1. 변수 x, y 가 integer type 이라가정하고다음빈칸에 x 와 y 의계산결과값을적으시오. (5) x = (3 + 7) * 6; x = 60 x

More information

< E20C6DFBFFEBEEE20C0DBBCBAC0BB20C0A7C7D12043BEF0BEEE20492E707074>

< E20C6DFBFFEBEEE20C0DBBCBAC0BB20C0A7C7D12043BEF0BEEE20492E707074> Chap #2 펌웨어작성을위한 C 언어 I http://www.smartdisplay.co.kr 강의계획 Chap1. 강의계획및디지털논리이론 Chap2. 펌웨어작성을위한 C 언어 I Chap3. 펌웨어작성을위한 C 언어 II Chap4. AT89S52 메모리구조 Chap5. SD-52 보드구성과코드메모리프로그래밍방법 Chap6. 어드레스디코딩 ( 매핑 ) 과어셈블리어코딩방법

More information

Microsoft PowerPoint - chap13-입출력라이브러리.pptx

Microsoft PowerPoint - chap13-입출력라이브러리.pptx #include int main(void) int num; printf( Please enter an integer: "); scanf("%d", &num); if ( num < 0 ) printf("is negative.\n"); printf("num = %d\n", num); return 0; 1 학습목표 스트림의 기본 개념을 알아보고,

More information

Chapter_06

Chapter_06 프로그래밍 1 1 Chapter 6. Functions and Program Structure April, 2016 Dept. of software Dankook University http://embedded.dankook.ac.kr/~baeksj 이장의강의목표 2 문자의입력방법을이해한다. 중첩된 if문을이해한다. while 반복문의사용법을익힌다. do 반복문의사용법을익힌다.

More information

C 언어 프로그래밊 과제 풀이

C 언어 프로그래밊 과제 풀이 과제풀이 (1) 홀수 / 짝수판정 (1) /* 20094123 홍길동 20100324 */ /* even_or_odd.c */ /* 정수를입력받아홀수인지짝수인지판정하는프로그램 */ int number; printf(" 정수를입력하시오 => "); scanf("%d", &number); 확인 주석문 가필요한이유 printf 와 scanf 쌍

More information

C 프로그래밊 개요

C 프로그래밊 개요 함수 (2) 2009 년 9 월 24 일 김경중 공지사항 10 월 1 일목요일수업휴강 숙제 #1 마감 : 10 월 6 일화요일 기초 함수를만들어라! 입력 함수 ( 기능수행 ) 반환 사용자정의함수 정의 : 사용자가자신의목적에따라직접작성한함수 함수의원형 (Function Prototype) + 함수의본체 (Function Body) : 함수의원형은함수에대한기본적정보만을포함

More information

untitled

untitled Step Motor Device Driver Embedded System Lab. II Step Motor Step Motor Step Motor source Embedded System Lab. II 2 open loop, : : Pulse, 1 Pulse,, -, 1 +5%, step Step Motor (2),, Embedded System Lab. II

More information

106 107, ( ),, ( ), 3, int kor[5]; int eng[5]; int Microsoft Windows 4 (ANSI C2 ) int kor[5] 20 # define #define SIZE 20 int a[10]; char c[10]; float

106 107, ( ),, ( ), 3, int kor[5]; int eng[5]; int Microsoft Windows 4 (ANSI C2 ) int kor[5] 20 # define #define SIZE 20 int a[10]; char c[10]; float Part 2 31 32 33 106 107, ( ),, ( ), 3, int kor[5]; int eng[5]; int Microsoft Windows 4 (ANSI C2 ) int kor[5] 20 # define #define SIZE 20 int a[10]; char c[10]; float f[size]; /* 10 /* c 10 /* f 20 3 1

More information

歯7장.PDF

歯7장.PDF 7 Hello!! C 2 . 3 ([] ) < > [ ]; int array[10]; < > [ ][ ]; int array [3] [5]; 4 < > [ ]={ x1,,x10} ( ); (,). ({}). : int array[10]={1,2,3,4,5,6,7,8,9,10}; (" "). : char array[7]="turbo-c"; 5 int array[2][3]={{1,2},{3,4},{5,6}};

More information

chap7.PDF

chap7.PDF 7 Hello!! C 2 . 3 ([] ) < > [ ]; int array[10]; < > [ ][ ]; int array [3] [5]; 4 < > [ ]={ x1,,x10} ( ); (,). ({}). : int array[10]={1,2,3,4,5,6,7,8,9,10}; (" "). : char array[7]="turbo-c"; 5 int array[2][3]={{1,2},{3,4},{5,6}};

More information

C++-¿Ïº®Çؼ³10Àå

C++-¿Ïº®Çؼ³10Àå C C++. (preprocessor directives), C C++ C/C++... C++, C. C++ C. C C++. C,, C++, C++., C++.,.. #define #elif #else #error #if #itdef #ifndef #include #line #pragma #undef #.,.,. #include #include

More information

11장 포인터

11장 포인터 Dynamic Memory and Linked List 1 동적할당메모리의개념 프로그램이메모리를할당받는방법 정적 (static) 동적 (dynamic) 정적메모리할당 프로그램이시작되기전에미리정해진크기의메모리를할당받는것 메모리의크기는프로그램이시작하기전에결정 int i, j; int buffer[80]; char name[] = data structure"; 처음에결정된크기보다더큰입력이들어온다면처리하지못함

More information

<4D F736F F F696E74202D20C1A63132B0AD20B5BFC0FB20B8DEB8F0B8AEC7D2B4E7>

<4D F736F F F696E74202D20C1A63132B0AD20B5BFC0FB20B8DEB8F0B8AEC7D2B4E7> 제14장 동적 메모리 할당 Dynamic Allocation void * malloc(sizeof(char)*256) void * calloc(sizeof(char), 256) void * realloc(void *, size_t); Self-Referece NODE struct selfref { int n; struct selfref *next; }; Linked

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Chapter 06 반복문 01 반복문의필요성 02 for문 03 while문 04 do~while문 05 기타제어문 반복문의의미와필요성을이해한다. 대표적인반복문인 for 문, while 문, do~while 문의작성법을 알아본다. 1.1 반복문의필요성 반복문 동일한내용을반복하거나일정한규칙으로반복하는일을수행할때사용 프로그램을좀더간결하고실제적으로작성할수있음.

More information

Microsoft PowerPoint - ch09 - 연결형리스트, Stack, Queue와 응용 pm0100

Microsoft PowerPoint - ch09 - 연결형리스트, Stack, Queue와 응용 pm0100 2015-1 프로그래밍언어 9. 연결형리스트, Stack, Queue 2015 년 5 월 4 일 교수김영탁 영남대학교공과대학정보통신공학과 (Tel : +82-53-810-2497; Fax : +82-53-810-4742 http://antl.yu.ac.kr/; E-mail : ytkim@yu.ac.kr) 연결리스트 (Linked List) 연결리스트연산 Stack

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Chapter 08 함수 01 함수의개요 02 함수사용하기 03 함수와배열 04 재귀함수 함수의필요성을인식한다. 함수를정의, 선언, 호출하는방법을알아본다. 배열을함수의인자로전달하는방법과사용시장점을알아본다. 재귀호출로해결할수있는문제의특징과해결방법을알아본다. 1.1 함수의정의와기능 함수 (function) 특별한기능을수행하는것 여러가지함수의예 Page 4 1.2

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 KeyPad Device Control - Device driver Jo, Heeseung HBE-SM5-S4210 에는 16 개의 Tack Switch 를사용하여 4 행 4 열의 Keypad 가장착 4x4 Keypad 2 KeyPad 를제어하기위하여 FPGA 내부에 KeyPad controller 가구현 KeyPad controller 16bit 로구성된

More information

Line (A) å j a k= i k #define max(a, b) (((a) >= (b))? (a) : (b)) long MaxSubseqSum0(int A[], unsigned Left, unsigned Right) { int Center, i; long Max

Line (A) å j a k= i k #define max(a, b) (((a) >= (b))? (a) : (b)) long MaxSubseqSum0(int A[], unsigned Left, unsigned Right) { int Center, i; long Max 알고리즘설계와분석 (CSE3081-2반 ) 중간고사 (2013년 10월24일 ( 목 ) 오전 10시30분 ) 담당교수 : 서강대학교컴퓨터공학과임인성수강학년 : 2학년문제 : 총 8쪽 12문제 ========================================= < 주의 > 답안지에답을쓴후제출할것. 만약공간이부족하면답안지의뒷면을이용하고반드시답을쓰는칸에답안지의어느쪽의뒷면에답을기술하였는지명시할것.

More information

프로그램을 학교 등지에서 조금이라도 배운 사람들을 위한 프로그래밍 노트 입니다. 저 역시 그 사람들 중 하나 입니다. 중고등학교 시절 학교 도서관, 새로 생긴 시립 도서관 등을 다니며 책을 보 고 정리하며 어느정도 독학으르 공부하긴 했지만, 자주 안하다 보면 금방 잊어

프로그램을 학교 등지에서 조금이라도 배운 사람들을 위한 프로그래밍 노트 입니다. 저 역시 그 사람들 중 하나 입니다. 중고등학교 시절 학교 도서관, 새로 생긴 시립 도서관 등을 다니며 책을 보 고 정리하며 어느정도 독학으르 공부하긴 했지만, 자주 안하다 보면 금방 잊어 개나리 연구소 C 언어 노트 (tyback.egloos.com) 프로그램을 학교 등지에서 조금이라도 배운 사람들을 위한 프로그래밍 노트 입니다. 저 역시 그 사람들 중 하나 입니다. 중고등학교 시절 학교 도서관, 새로 생긴 시립 도서관 등을 다니며 책을 보 고 정리하며 어느정도 독학으르 공부하긴 했지만, 자주 안하다 보면 금방 잊어먹고 하더라구요. 그래서,

More information

프로그래밍개론및실습 2015 년 2 학기프로그래밍개론및실습과목으로본내용은강의교재인생능출판사, 두근두근 C 언어수업, 천인국지음을발췌수정하였음

프로그래밍개론및실습 2015 년 2 학기프로그래밍개론및실습과목으로본내용은강의교재인생능출판사, 두근두근 C 언어수업, 천인국지음을발췌수정하였음 프로그래밍개론및실습 2015 년 2 학기프로그래밍개론및실습과목으로본내용은강의교재인생능출판사, 두근두근 C 언어수업, 천인국지음을발췌수정하였음 CHAPTER 9 둘중하나선택하기 관계연산자 두개의피연산자를비교하는연산자 결과값은참 (1) 아니면거짓 (0) x == y x 와 y 의값이같은지비교한다. 관계연산자 연산자 의미 x == y x와 y가같은가? x!= y

More information

À©µµ³×Æ®¿÷ÇÁ·Î±×·¡¹Ö4Àå_ÃÖÁ¾

À©µµ³×Æ®¿÷ÇÁ·Î±×·¡¹Ö4Àå_ÃÖÁ¾ P a 02 r t Chapter 4 TCP Chapter 5 Chapter 6 UDP Chapter 7 Chapter 8 GUI C h a p t e r 04 TCP 1 3 1 2 3 TCP TCP TCP [ 4 2] listen connect send accept recv send recv [ 4 1] PC Internet Explorer HTTP HTTP

More information

본 강의에 들어가기 전

본 강의에 들어가기 전 C 기초특강 종합과제 과제내용 구조체를이용하여교과목이름과코드를파일로부터입력받아관리 구조체를이용하여학생들의이름, 학번과이수한교과목의코드와점수를파일로부터입력 학생개인별총점, 평균계산 교과목별이수학생수, 총점및평균을계산 결과를파일에저장하는프로그램을작성 2 Makefile OBJS = score_main.o score_input.o score_calc.o score_print.o

More information

01....b74........62

01....b74........62 4 5 CHAPTER 1 CHAPTER 2 CHAPTER 3 6 CHAPTER 4 CHAPTER 5 CHAPTER 6 7 1 CHAPTER 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

More information

(291)본문7

(291)본문7 2 Chapter 46 47 Chapter 2. 48 49 Chapter 2. 50 51 Chapter 2. 52 53 54 55 Chapter 2. 56 57 Chapter 2. 58 59 Chapter 2. 60 61 62 63 Chapter 2. 64 65 Chapter 2. 66 67 Chapter 2. 68 69 Chapter 2. 70 71 Chapter

More information

¾Ë·¹¸£±âÁöħ¼�1-ÃÖÁ¾

¾Ë·¹¸£±âÁöħ¼�1-ÃÖÁ¾ Chapter 1 Chapter 1 Chapter 1 Chapter 2 Chapter 2 Chapter 2 Chapter 2 Chapter 2 Chapter 3 Chapter 3 Chapter 3 Chapter 3 Chapter 3 Chapter 3 Chapter 3 Chapter 3 Chapter 4 Chapter 4

More information

비트와바이트 비트와바이트 비트 (Bit) : 2진수값하나 (0 또는 1) 를저장할수있는최소메모리공간 1비트 2비트 3비트... n비트 2^1 = 2개 2^2 = 4개 2^3 = 8개... 2^n 개 1 바이트는 8 비트 2 2

비트와바이트 비트와바이트 비트 (Bit) : 2진수값하나 (0 또는 1) 를저장할수있는최소메모리공간 1비트 2비트 3비트... n비트 2^1 = 2개 2^2 = 4개 2^3 = 8개... 2^n 개 1 바이트는 8 비트 2 2 비트연산자 1 1 비트와바이트 비트와바이트 비트 (Bit) : 2진수값하나 (0 또는 1) 를저장할수있는최소메모리공간 1비트 2비트 3비트... n비트 2^1 = 2개 2^2 = 4개 2^3 = 8개... 2^n 개 1 바이트는 8 비트 2 2 진수법! 2, 10, 16, 8! 2 : 0~1 ( )! 10 : 0~9 ( )! 16 : 0~9, 9 a, b,

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 순환알고리즘 C 로쉽게풀어쓴자료구조 순환 (recursion) 수행이끝나기전에자기자신을다시호출하여문제해결 - 직접순환, 간접순환 문제정의가순환적으로되어있는경우에적합한방법 ( 예제 ) 팩토리얼 피보나치수열 n! 1 n * ( n 1)! n n 0 fib( n) 1 fib ( n 2) fib( n 1) 1 ` 2 if if n 0 n 1 otherwise 이항계수

More information

K&R2 Reference Manual 번역본

K&R2 Reference Manual 번역본 typewriter structunion struct union if-else if if else if if else if if if if else else ; auto register static extern typedef void char short int long float double signed unsigned const volatile { } struct

More information

C 프로그래밍 언어 입문 C 프로그래밍 언어 입문 김명호저 숭실대학교 출판국 머리말..... C, C++, Java, Fortran, Python, Ruby,.. C. C 1972. 40 C.. C. 1999 C99. C99. C. C. C., kmh ssu.ac.kr.. ,. 2013 12 Contents 1장 프로그래밍 시작 1.1 C 10 1.2 12

More information

5.스택(강의자료).key

5.스택(강의자료).key CHP 5: https://www.youtube.com/watch?v=ns-r91557ds ? (stack): (LIFO:Last-In First-Out):. D C B C B C B C B (element) C (top) B (bottom) (DT) : n element : create() ::=. is_empty(s) ::=. is_full(s) ::=.

More information

BMP 파일 처리

BMP 파일 처리 BMP 파일처리 김성영교수 금오공과대학교 컴퓨터공학과 학습내용 영상반전프로그램제작 2 Inverting images out = 255 - in 3 /* 이프로그램은 8bit gray-scale 영상을입력으로사용하여반전한후동일포맷의영상으로저장한다. */ #include #include #define WIDTHBYTES(bytes)

More information

Chapter 4. LISTS

Chapter 4. LISTS 연결리스트의응용 류관희 충북대학교 1 체인연산 체인을역순으로만드는 (inverting) 연산 3 개의포인터를적절히이용하여제자리 (in place) 에서문제를해결 typedef struct listnode *listpointer; typedef struct listnode { char data; listpointer link; ; 2 체인연산 체인을역순으로만드는

More information

이번장에서학습할내용 동적메모리란? malloc() 와 calloc() 연결리스트 파일을이용하면보다많은데이터를유용하고지속적으로사용및관리할수있습니다. 2

이번장에서학습할내용 동적메모리란? malloc() 와 calloc() 연결리스트 파일을이용하면보다많은데이터를유용하고지속적으로사용및관리할수있습니다. 2 제 17 장동적메모리와연결리스트 유준범 (JUNBEOM YOO) Ver. 2.0 jbyoo@konkuk.ac.kr http://dslab.konkuk.ac.kr 본강의자료는생능출판사의 PPT 강의자료 를기반으로제작되었습니다. 이번장에서학습할내용 동적메모리란? malloc() 와 calloc() 연결리스트 파일을이용하면보다많은데이터를유용하고지속적으로사용및관리할수있습니다.

More information

chap8.PDF

chap8.PDF 8 Hello!! C 2 3 4 struct - {...... }; struct jum{ int x_axis; int y_axis; }; struct - {...... } - ; struct jum{ int x_axis; int y_axis; }point1, *point2; 5 struct {....... } - ; struct{ int x_axis; int

More information

3. 1 포인터란 3. 2 포인터변수의선언과사용 3. 3 다차원포인터변수의선언과사용 3. 4 주소의가감산 3. 5 함수포인터

3. 1 포인터란 3. 2 포인터변수의선언과사용 3. 3 다차원포인터변수의선언과사용 3. 4 주소의가감산 3. 5 함수포인터 - Part2-3 3. 1 포인터란 3. 2 포인터변수의선언과사용 3. 3 다차원포인터변수의선언과사용 3. 4 주소의가감산 3. 5 함수포인터 3.1 포인터란 ü ü ü. ü. ü. ü ( ) ? 3.1 ü. ü C ( ).? ü ü PART2-4 ü ( ) PART3-4 3.2 포인터변수의선언과사용 3.2 포인터 변수의 선언과 사용 (1/8) 포인터 변수의

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Web server porting 2 Jo, Heeseung Web 을이용한 LED 제어 Web 을이용한 LED 제어프로그램 web 에서데이터를전송받아타겟보드의 LED 를조작하는프로그램을작성하기위해다음과같은소스파일을생성 2 Web 을이용한 LED 제어 LED 제어프로그램작성 8bitled.html 파일을작성 root@ubuntu:/working/web# vi

More information

untitled

untitled 자료형 기본자료형 : char, int, float, double 등 파생자료형 : 배열, 열거형, 구조체, 공용체 vs struct 구조체 _ 태그 _ 이름 자료형멤버 _ 이름 ; 자료형멤버 _ 이름 ;... ; struct student int number; // char name[10]; // double height; // ; // x값과 y값으로이루어지는화면의좌표

More information

Microsoft PowerPoint - chap12-고급기능.pptx

Microsoft PowerPoint - chap12-고급기능.pptx #include int main(void) int num; printf( Please enter an integer: "); scanf("%d", &num); if ( num < 0 ) printf("is negative.\n"); printf("num = %d\n", num); return 0; 1 학습목표 가 제공하는 매크로 상수와 매크로

More information

02장.배열과 클래스

02장.배열과 클래스 ---------------- DATA STRUCTURES USING C ---------------- CHAPTER 배열과구조체 1/20 많은자료의처리? 배열 (array), 구조체 (struct) 성적처리프로그램에서 45 명의성적을저장하는방법 주소록프로그램에서친구들의다양한정보 ( 이름, 전화번호, 주소, 이메일등 ) 를통합하여저장하는방법 홍길동 이름 :

More information

연습문제만-수정

연습문제만-수정 10 Call by Value Call by Reference Call by Result Call by Name C call by value void int X int hap(int x, int y, int z, int w); printf("%d\n", hap(3, 4, 5, 6)); int hap(int x, int y, int z, int w) return

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 김서형 : 010 9320-8604 30 분전시간 시간을입력받아 30분전의시간을출력하시오. 예 ) 시간을입력하세요. ex) 00:00 ( 출력 ) 11:5 ( 입력 ) 30분전의시간은 10:35입니다. ( 변수값출력 ) 알고리즘 (30 분보다크다면시간변동 x, 현재분에서 -30) (30 분보다작다면, 현재시간 -1, 현재분에서 +30) 30 분전시간 #include

More information

<C1DFB0EDB5EEBACE2E687770>

<C1DFB0EDB5EEBACE2E687770> 2016 지역대회중고등부문제 1 (1점) 어떤수 에대해등식 이성립한다고한다 이때 의값은? 1 1 2 0 3 1 4 2 5 2016 2 (12점) 1에서 20까지의자연수를모두곱한수를 X라고하자 X를 16진수로표기했을때오른쪽끝에연속적으로나타나는 0의개수는? 1 2 2 3 3 4 4 9 5 18 3 (13점) 자연수의제곱으로나타낼수있는수를제곱수라고부른다 예를들어,

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 7-Segment Device Control - Device driver Jo, Heeseung HBE-SM5-S4210 의 M3 Module 에는 6 자리를가지는 7-Segment 모듈이아래그림처럼실장 6 Digit 7-Segment 2 6-Digit 7-Segment LED controller 16비트로구성된 2개의레지스터에의해제어 SEG_Sel_Reg(Segment

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 7-Segment Device Control - Device driver Jo, Heeseung HBE-SM5-S4210 의 M3 Module 에는 6 자리를가지는 7-Segment 모듈이아래그림처럼실장 6 Digit 7-Segment 2 6-Digit 7-Segment LED Controller 16비트로구성된 2개의레지스터에의해제어 SEG_Sel_Reg(Segment

More information

Chapter 4. LISTS

Chapter 4. LISTS 6. 동치관계 (Equivalence Relations) 동치관계 reflexive, symmetric, transitive 성질을만족 "equal to"(=) 관계는동치관계임. x = x x = y 이면 y = x x = y 이고 y = z 이면 x = z 동치관계를이용하여집합 S 를 동치클래스 로분할 동일한클래스내의원소 x, y 에대해서는 x y 관계성립

More information

13 주차문자열의표현과입출력

13 주차문자열의표현과입출력 13 주차문자열의표현과입출력 문자표현방법 문자열표현방법 문자열이란무엇인가? 문자열의입출력 문자처리라이브러리함수 표준입출력라이브러리함수 C 언어를이용하여문자열을처리하기위해서는문자형의배열이나포인터를사용하게된다. 문자열을처리하는동작으로는단순하게문자열의입력이나출력기능이외에도문자열의복사나치환, 문자열의길이를구하거나문자열을비교하는기능등많은기능을필요로한다. 그러나이러한기능들을모두구현하기란매우까다로우며,

More information

Microsoft PowerPoint - chap11.ppt [호환 모드]

Microsoft PowerPoint - chap11.ppt [호환 모드] 2010-1 학기프로그래밍입문 (1) 11 장입출력과운영체제 박종혁 Tel: 970-6702 Email: jhpark1@snut.ac.kr k 0 특징 printf() - 임의의개수의인자출력 - 간단한변환명세나형식을사용한출력제어 A Book on C, 4ed. 11-1 printf() printf(control_string, other_argument) -

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 7-SEGMENT DEVICE CONTROL - DEVICE DRIVER Jo, Heeseung 디바이스드라이버구현 : 7-SEGMENT HBE-SM5-S4210 의 M3 Module 에는 6 자리를가지는 7-Segment 모듈이아래그림처럼실장 6 Digit 7-Segment 2 디바이스드라이버구현 : 7-SEGMENT 6-Digit 7-Segment LED

More information

슬라이드 1

슬라이드 1 Recursion SANGJI University KO Kwangman () 1. 개요 재귀 (recursion) 의정의, 순환 정의하고있는개념자체에대한정의내부에자기자신이포함되어있는경우를의미 알고리즘이나함수가수행도중에자기자신을다시호출하여문제를해결하는기법 정의자체가순환적으로되어있는경우에적합한방법 예제 ) 팩토리얼값구하기 피보나치수열 이항계수 하노이의탑 이진탐색

More information

; struct point p[10] = {{1, 2, {5, -3, {-3, 5, {-6, -2, {2, 2, {-3, -3, {-9, 2, {7, 8, {-6, 4, {8, -5; for (i = 0; i < 10; i++){ if (p[i].x > 0 && p[i

; struct point p[10] = {{1, 2, {5, -3, {-3, 5, {-6, -2, {2, 2, {-3, -3, {-9, 2, {7, 8, {-6, 4, {8, -5; for (i = 0; i < 10; i++){ if (p[i].x > 0 && p[i ; struct point p; printf("0이아닌점의좌표를입력하시오 : "); scanf("%d %d", &p.x, &p.y); if (p.x > 0 && p.y > 0) printf("1사분면에있다.\n"); if (p.x < 0 && p.y > 0) printf("2사분면에있다.\n"); if (p.x < 0 && p.y < 0) printf("3사분면에있다.\n");

More information

제 호 년 제67차 정기이사회, 고문 자문위원 추대 총동창회 집행부 임원 이사에게 임명장 수여 월 일(일) 년 월 일(일) 제 역대 최고액 모교 위해 더 확충해야 강조 고 문:고달익( 1) 김병찬( 1) 김지훈( 1) 강보성( 2) 홍경식( 2) 현임종( 3) 김한주( 4) 부삼환( 5) 양후림( 5) 문종채( 6) 김봉오( 7) 신상순( 8) 강근수(10)

More information

..........-....33

..........-....33 04 06 12 14 16 18 20 22 24 26 Contents 34 38 42 46 50 54 58 62 66 70 74 78 84 88 90 92 94 96 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 01 26 27 02 28 29 30 31 32 33 34 35 36 37 38 39

More information

자식농사웹완

자식농사웹완 윤 영 선 _ 지음 은혜한의원 서울시 마포구 도화1동 550 삼성프라자 308호 Tel : 3272.0120, 702.0120 진료시간 : 오전 9시 30분`~`오후 7시 점심시간 : 오후 1시`~`2시 토 요 일 : 오전 9시 30분`~`오후 3시 (일, 공휴일 휴진`/`전화로 진료 예약 받습니다) 은 혜 한 의 원 은혜한의원 CONTENTS 02 04 07

More information

chungo_story_2013.pdf

chungo_story_2013.pdf Contents 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99

More information

Contents 12 13 15 17 70 79 103 107 20 21 24 29 128 137 141 32 34 36 41 46 47 53 55 174 189 230 240 58 61 64 1. 1. 1 2 3 4 2. 2. 2 1 3 4 3. 3. 1 2 3 4 4. 4. 1 2 3 4 5. 5. 1 2 3 1 2 3

More information

전반부-pdf

전반부-pdf Contents 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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

More information

<4D6963726F736F667420506F776572506F696E74202D20312E20B0E6C1A6C0FCB8C15F3136B3E2C7CFB9DDB1E25F325FC6ED28C0BA292E70707478>

<4D6963726F736F667420506F776572506F696E74202D20312E20B0E6C1A6C0FCB8C15F3136B3E2C7CFB9DDB1E25F325FC6ED28C0BA292E70707478> Contents 3 2016 4 2016 5 2016 6 2016 7 2016 8 2016 9 2016 10 2016 11 2016 12 2016 13 2016 14 2016 15 2016 16 2016 17 2016 18 2016 19 2016 20 2016 21 2016 22 2016 23 2016 24 2016 25 2016 26 2016 27 2016

More information

..........- ........

..........- ........ Contents 24 28 32 34 36 38 40 42 44 46 50 52 54 56 58 60 61 62 64 66 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 01 02 24 25 03 04 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

More information

Contents 007 008 016 125 126 130 019 022 027 029 047 048 135 136 139 143 145 150 058 155 073 074 078 158 163 171 182 089 195 090 100 199 116 121 01 01 02 03 04 05 06 8 9 01 02 03 04 05 06 10 11 01 02 03

More information

A°ø¸ðÀü ³»Áö1-¼öÁ¤

A°ø¸ðÀü ³»Áö1-¼öÁ¤ 1 4 5 6 7 8 9 10 11 Contents 017 035 051 067 081 093 107 123 139 151 165 177 189 209 219 233 243 255 271 287 299 313 327 337 349 12 13 017 18 19 20 21 22 23 24 25 26 27 28 29 30 31 035 051 067 081 093

More information

±¹³»°æÁ¦ º¹»ç1

±¹³»°æÁ¦ º¹»ç1 Contents 2 2002. 1 116 2002. 1 2002. 1 117 118 2002. 1 2002. 1 119 120 2002. 1 2002. 1 121 122 2002. 1 2002. 1 123 124 2002. 1 2002. 1 125 126 2002. 1 2002. 1 127 128 2002. 1 2002. 1 129 130 2002. 1 2002.

More information

¿¡³ÊÁö ÀÚ¿ø-Âü°í ³»Áö.PDF

¿¡³ÊÁö ÀÚ¿ø-Âü°í ³»Áö.PDF Contents 01 02 03 6 04 05 7 8 9 01 10 02 03 11 04 01 12 02 13 03 04 14 01 02 03 04 15 05 06 16 07 17 08 18 01 02 03 19 04 20 05 21 06 07 22 08 23 24 25 26 27 28 29 30 31 32 33 01 36 02 03 37 38 01

More information

전반부-pdf

전반부-pdf Contents 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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

More information

Microsoft PowerPoint - 3. 2016 하반기 크레딧 전망_V3.pptx

Microsoft PowerPoint - 3. 2016 하반기 크레딧 전망_V3.pptx Contents 3 2016 4 2016 5 2016 6 2016 7 2016 8 2016 9 2016 10 2016 11 2016 12 2016 13 2016 14 2016 15 2016 16 2016 17 2016 18 2016 19 2016 20 2016 21 2016 22 2016 23 2016 24 2016 25 2016 26 2016 27 2016

More information

양성내지b72뼈訪?303逞

양성내지b72뼈訪?303逞 Contents 성매매 예방교육 가이드북 Contents 제3부 성매매의 어제와 오늘 그리고 한국의 현주소 제4부 처벌 과 보호 의 성매매방지법 1. 성매매의 역사적 배경 및 추이 1. 성매매방지법 제정 배경 62 2. 성매매방지법 제정 취지 63 40 2. 성매매에 대한 국가별 개입 양상 42 3. 규범적 판단과 형사처벌을 기준으로 본 성매매 4. 외국의

More information

³»Áöc03âš

³»Áöc03âš 08 09 27 20 32 42 contents 3 4 5 6 7 8 9 28 10 11 42 38 12 13 45 48 44 14 15 53 50 16 17 58 54 18 19 20 21 22 23 24 25 2008. 5. 27~30 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2008. 4. 27 42 43 44

More information