SlideShare a Scribd company logo
ภาษา C
ก           C
                    ก        ก           C !" # ก $#!% "            ก&
' ( ( ( ก ) * + #, ก ( - (. -*                        C $!% /" / 0
 ก1 $ % header file           C ' ก1 $ % 0 2) () ) ก3 *.h * &
       ( (     #, ก ( /" /        "ก ก "       # 0ก )" " (.6% /" # 0ก )
 /" / ) % " ! "            ( * )' )*% ก /           & !" " "!/
0*       ก )! * $#
7.1 ก               (standard functions)
            #, ก ( - (. -*        C $!% /" / 0 ก1 $ %
     header file        C ' ก1 $ % 0 2) () ) ก3 *.h * & )( *% ก %
    ก ! *% 6% ก            "6 header file ! ก           '" %
' ( #include<header file.h> /% )              * *% / # 0ก )
    )      % ก (*% ก $!% 8( ก ) * + #, ก (
   - .6%. -* C compiler /" / 9( %.6% % $# " ก /" # 0ก ) %ก
 /" # 0ก ) ! ก0 "/             '           "ก ก ) * +          :$
    ก : (library functions)
ก )*+ ( ก              /%     ก <9 ก ) * + (
    #, 0 "ก %        "&       8( )! * $#
7.1.1 ก                   (mathematic functions)
                #, ก ( %         ก ' = '=-*> * 0 ก (      %
   ก #          *% %' ( #include <math.h> 0 ก "6* *% /
 # 0ก ) 0 * 0# ( % ก #                *% )
   -! (type) #, double ( ก. 9? ($!% ก ก #          $!%'
  ก / /% )6 #, double ก
    ก                              !
acos(x)           asin(x)            atan(x)
sin(x)            cos(x)           tan(x)
sqrt(x)            exp(x)            pow(x,y)
log(x)            log10(x)           ceil(x)
floor(x)           fabs(x)
1) ก   acos(x)
       #, ก ( %' = ' arc cosine / x !" ( x #, ' )3)
    " !" (radian)
            6#0
  acos(x);
       2) ก asin(x)
       #, ก ( %' = ' arc sine / x !" ( x #, ' )3)
  " !"
        6#0
  asin(x);
      3) ก atan(x)
       #, ก ( %' = ' arc tan / x !" ( x #, ' )3)
  " !"
          6#0
  atan(x);
4) ก    sin(x)
       #, ก ( %'   = ' sine /    x !" ( x #, ' )3)     " !"
      6#0
  sin(x);

        5) ก cos(x)
       #, ก ( %' = ' cosine /      x !" ( x #, ' )3)    "
 !"
       6#0
  cos(x);

      6) ก tan(x)
#, ก ( %' = ' tan /      x !" ( x #, ' )3)    " !"
       6#0
   tan(x);
9( ' ) /%        ก %     ก acos(x), asin(x), atan(x), sin(x),
cos(x) 0         tan(x) ) ก"-( / %>ก # 0ก )* " * $# "# $ก                                 %&'
   7.1 0 !      ก %     ก acos(x), asin(x), atan(x), sin(x),
cos(x) 0         tan(x)
*         math1.c          */
#include<stdio.h>                                                  /*        ! ( 1 */
#include<math.h>                                                   /*        ! ( 2 */
#include<conio.h>                                                  /*        ! ( 3 */
void main(void)                                                      /*        ! ( 4 */
{                                               /*   ! ( 5 */
   double r, pi = 3.141592654;                            /*        ! ( 6 */
   r = pi/180;                                             /*         ! ( 7 */
   clrscr();                                               /*        ! ( 8 */
   printf("%fn",asin(r));                                    /*        ! ( 9 */
   printf("%fn",acos(r));                                    /*       ! ( 10 */
   printf("%fn",atan(r));                                     /*       ! ( 11 */
   printf("%fn",sin(r));                                      /*       ! ( 12 */
   printf("%fn",cos(r));                                     /*       ! ( 13 */
   printf("%fn",tan(r));                                      /*       ! ( 14 */
   printf("nPress any key back to program ..."); /*     ! ( 15 */
   getch();                                                /*         ! ( 16 */
}                                                 /*  ! ( 17 */
())*+ , -. ก"# $ก
' ?- " # 0ก )
          ก # 0ก )* " ( 7.1 ) ?- "ก            / # 0ก ) ( 'N & $!%!
     ! ( 9 ' ( printf("%fn",asin(r)); ก ' = ' arc sin / * 0# r !" r #, )3)         "
  !" 0 0 ! . 9? ($!% ก        9
     ! ( 10 ' ( printf("%fn",acos(r));      ก ' = ' arc cosine / * 0# r !" r #, )3)
    " !" 0 0 ! . 9? ($!% ก        9
     ! ( 11 ' ( printf("%fn",atan(r)); ก ' = ' arc tan / * 0# r !" r #, )3)           "
  !" 0 0 ! . 9? ($!% ก        9
     ! ( 12 ' ( printf("%fn",sin(r)); ก ' = ' sine / * 0# r !" r #, )3)        " !"
0 0 ! . 9? ($!% ก        9
     ! ( 13 ' ( printf("%fn",cos(r)); ก ' = ' cosine / * 0# r !" r #, )3)           "
  !" 0 0 ! . 9? ($!% ก        9
     ! ( 14 ' ( printf("%fn",tan(r)); ก ' = ' tan / * 0# r !" r #, )3)        " !"
0 0 ! . 9? ($!% ก        9
     ! ( 15 0 16 9-)9/% ' ) %ก!'" ! & 9( ก 6 # 0ก ) 0 "3! ' ! &     ก! enter ก /% 6
 # 0ก )                                   /*    ! ( 17 */
7) ก       sqrt(x)
          #, ก ( % ' ก ( 2 (square root) / ' ' (   * 0# x !" ( x      *% #, ' ' ( -!
* / * 0# )' $)*-!
                (
         6#0
     sqrt(x);
        8) ก exp(x)
          #, ก ( % ' ex !" ( x #, ' ' ( * 0# (     % #, ' "กก   /   e !" ( e )' # ) =
2.718282
           6#0
     exp(x);
9) ก pow(x,y)
 #, ก ( % ' xy
 !" (
x #, ' ' ( * 0# ( % #, * + 8( *% )' ) กก >6 "
y #, ' ' ( * 0# ( % #, ' "กก
 6#0
    pow(x, y);
1.2 ก ก(" ก * ก (character functions) #, ก ( %ก /% )6 ) -! #, single char
                                                              (
( % ( 1 byte)         0 ก ( % ก #              *% %' ( #include<ctype.h> 0 ก "6
* *% / # 0ก )         )      "ก % ก #      $!% ก ก(" ก * ก ( 'N         isalnum(ch),
isalpha(ch), isdigit(ch), islower(ch), isupper(ch), tolower(ch), toupper(ch),
isspace(ch), isxdigit(ch)

        1.3 ก ก(" ก * - (string functions) #, ก ( ก /% )6 -! * - (string)
                                                         %
 !"ก ( % ก #               *% %' ( #include<string.h> 0 ก "6* *% / # 0ก ) "ก
      "ก % ก #        $!% ก ก(" ก * - ( 'N       strlen(s), strcmp(s1,s2)
, strcpy(s), strcat(s1,s2)

      1.4 ก ( $# ( %        "&
 ก   clrscr( ) #, ก ( %     ก /% )6 ก ก     90 text mode
 ก   gotoxy(x,y) #, ก       ( ' ( %* * 0
                              %           (cursor) ' ( ($#" * 0      (   3$ %   9
 ก   sizeof(x) #, ก (     %*     / !/ * 0# x )/ !ก( Byte
2. ก ( /" / (user defined functions) ก ( /" /                        '        "ก
 # 0ก )" " '        / # 0ก ) ( /" / 9( % )              $!% " ! "       ( * )' )
*% ก         .6% /" # 0ก )     C -") "ก # 0ก )" " : ก :              .6% ( /"
 # 0ก )     # ' '            0         -ก -") "ก : # 0ก )" ": " $ ก1* )
 # 0ก )" "        ก ก1) ก = ก            ) ก 9" 0* "ก ( * ก
  ก        "ก       ก 8(                  #, ก " 6% ก(" ก      ( /"
/ (user define functions : UDF) * 0*ก # ก > 6#0                  ก ก /" *
   ก 0 ก "ก % ก 9( % )              % ก ( /" / # 0ก )               C $!% "
 6ก*%
   ก /" ก / ) % " ! "                (        )     0 ก ก ( /" / * ) ก =
ก ' $#0          ' ก $!% 3 0 '
             2.1 ก ($))ก ' $#0             'ก
             2.2 ก )ก ' $#0*$)) ' ก
                        (
             2.3 ก ) ก ' $#0
                          (                 'ก
      8( ก 0* 0 ก1 ) ก            0* " ! .6% /" ก                 #, ( *% >ก
   ' ) /%     ก 0* 0 9( $!%) # "3ก* %ก             $!% " ) )
) ก
            -
 " 9        / ' ).6/3 / ( 3
" #O- *- - ?- *- ).6/3 / ( 4
  " ? -* * - -"  ).6/3 / ( 8
 " ก P- .- ) ).6/3 / ( 13
      3
 " กQ*=+ ก 6    ).6/3 / ( 14
" - "3 ? '       ).6/3 / ( 20

More Related Content

PDF
Get into the FLOW with Extbase
PDF
Résistance à la chloroquine et réversion
PDF
PDF
JavaOne2010 Groovy/Spring Roo
PDF
BCIC Town hall may5th
PDF
Ugas, Kohtala: Clarifying the role of design within the Framework for Strateg...
PDF
Prepositions made easy-xpert
Get into the FLOW with Extbase
Résistance à la chloroquine et réversion
JavaOne2010 Groovy/Spring Roo
BCIC Town hall may5th
Ugas, Kohtala: Clarifying the role of design within the Framework for Strateg...
Prepositions made easy-xpert

What's hot (19)

PDF
Retrato de xavi.
PDF
School safety india handbook
PDF
Functional php
PDF
Git avançado
KEY
Science World Board Presentation
PDF
"Internationalisation with PHP and Intl" source code
PDF
De 0 a 100 con Bash Shell Scripting y AWK
PDF
Ruby ile tanışma!
PDF
Cysts of the jaw 10
PDF
Barcelona.pm Curs1211 sess01
PDF
Meet up symfony 16 juin 2017 - Les PSR
PDF
Corporate Council on Africa Infrastructure Conference, Washington, DC, Septem...
KEY
Pecha Kucha
PDF
Rothke Press
PDF
Scroll pHAT HD に美咲フォント
PDF
Anna bhaaryato
TXT
Bouncingballs sh
TXT
Getfilestruct zbksh(1)
PDF
LAMP_TRAINING_SESSION_6
Retrato de xavi.
School safety india handbook
Functional php
Git avançado
Science World Board Presentation
"Internationalisation with PHP and Intl" source code
De 0 a 100 con Bash Shell Scripting y AWK
Ruby ile tanışma!
Cysts of the jaw 10
Barcelona.pm Curs1211 sess01
Meet up symfony 16 juin 2017 - Les PSR
Corporate Council on Africa Infrastructure Conference, Washington, DC, Septem...
Pecha Kucha
Rothke Press
Scroll pHAT HD に美咲フォント
Anna bhaaryato
Bouncingballs sh
Getfilestruct zbksh(1)
LAMP_TRAINING_SESSION_6
Ad

Similar to ภาษา C (20)

PDF
บทที่ 6 1 ฟังก์ชัน printf scanf [slide]
PDF
ข้อมูลและสารสนเทศ
PDF
Laerning01
PPTX
โปรแกรมย่อยและฟังชันก์มาตรฐาน
PDF
Learning04
PDF
OOP Chapter 7 : More on Classes
DOCX
ภาษา C โปรแกรมย่อยและฟังก์ชันมาตรฐาน
PDF
data1
PDF
Computer Software
PDF
Learning03
PPSX
โปรแกรมภาษาซีเบื้องต้น
PDF
Work-Communication
PDF
PDF
PDF
Chapter 9 : Polymorphism, Dynamic Typing, and Dynamic Binding
DOCX
PDF
หน่วย2 เซลล์ไฟฟ้า
PPT
C-Language Unit-2
บทที่ 6 1 ฟังก์ชัน printf scanf [slide]
ข้อมูลและสารสนเทศ
Laerning01
โปรแกรมย่อยและฟังชันก์มาตรฐาน
Learning04
OOP Chapter 7 : More on Classes
ภาษา C โปรแกรมย่อยและฟังก์ชันมาตรฐาน
data1
Computer Software
Learning03
โปรแกรมภาษาซีเบื้องต้น
Work-Communication
Chapter 9 : Polymorphism, Dynamic Typing, and Dynamic Binding
หน่วย2 เซลล์ไฟฟ้า
C-Language Unit-2
Ad

More from Noppanon YourJust'one (12)

DOCX
Line maps for indoor
PDF
ข่าว It
DOCX
ส่งภาพประกวด
DOCX
การนำเข้าไฟล์เสียง
DOCX
กิจกรรมส่งภาพประกวด
DOCX
ส่งภาพเข้าประกวด
DOCX
ขั้นตอนการทำ Emoticon อย่างง่าย โดยใช้ flash8
DOCX
เทคนิค Flash cs ทำตัวอักษรวิ่งๆ แต่สีตัวอักษรเป็นพื้นรูป background
PDF
ประกวดภาพถ่าย
PDF
ภูมิปัญญาท้องถิ่น พิธีกรรมทำขวัญข้าว
PDF
ข้อสอบวิเคราะห์
DOCX
ข่าว It 3
Line maps for indoor
ข่าว It
ส่งภาพประกวด
การนำเข้าไฟล์เสียง
กิจกรรมส่งภาพประกวด
ส่งภาพเข้าประกวด
ขั้นตอนการทำ Emoticon อย่างง่าย โดยใช้ flash8
เทคนิค Flash cs ทำตัวอักษรวิ่งๆ แต่สีตัวอักษรเป็นพื้นรูป background
ประกวดภาพถ่าย
ภูมิปัญญาท้องถิ่น พิธีกรรมทำขวัญข้าว
ข้อสอบวิเคราะห์
ข่าว It 3

Recently uploaded (20)

PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
Big Data Technologies - Introduction.pptx
PDF
Modernizing your data center with Dell and AMD
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
A Presentation on Artificial Intelligence
PDF
cuic standard and advanced reporting.pdf
PDF
Electronic commerce courselecture one. Pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Machine learning based COVID-19 study performance prediction
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Encapsulation_ Review paper, used for researhc scholars
Big Data Technologies - Introduction.pptx
Modernizing your data center with Dell and AMD
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
Chapter 3 Spatial Domain Image Processing.pdf
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Advanced methodologies resolving dimensionality complications for autism neur...
“AI and Expert System Decision Support & Business Intelligence Systems”
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
A Presentation on Artificial Intelligence
cuic standard and advanced reporting.pdf
Electronic commerce courselecture one. Pdf
Digital-Transformation-Roadmap-for-Companies.pptx
Machine learning based COVID-19 study performance prediction

ภาษา C

  • 2. C ก ก C !" # ก $#!% " ก& ' ( ( ( ก ) * + #, ก ( - (. -* C $!% /" / 0 ก1 $ % header file C ' ก1 $ % 0 2) () ) ก3 *.h * & ( ( #, ก ( /" / "ก ก " # 0ก )" " (.6% /" # 0ก ) /" / ) % " ! " ( * )' )*% ก / & !" " "!/ 0* ก )! * $# 7.1 ก (standard functions) #, ก ( - (. -* C $!% /" / 0 ก1 $ % header file C ' ก1 $ % 0 2) () ) ก3 *.h * & )( *% ก % ก ! *% 6% ก "6 header file ! ก '" % ' ( #include<header file.h> /% ) * *% / # 0ก ) ) % ก (*% ก $!% 8( ก ) * + #, ก ( - .6%. -* C compiler /" / 9( %.6% % $# " ก /" # 0ก ) %ก /" # 0ก ) ! ก0 "/ ' "ก ก ) * + :$ ก : (library functions)
  • 3. ก )*+ ( ก /% ก <9 ก ) * + ( #, 0 "ก % "& 8( )! * $# 7.1.1 ก (mathematic functions) #, ก ( % ก ' = '=-*> * 0 ก ( % ก # *% %' ( #include <math.h> 0 ก "6* *% / # 0ก ) 0 * 0# ( % ก # *% ) -! (type) #, double ( ก. 9? ($!% ก ก # $!%' ก / /% )6 #, double ก ก ! acos(x) asin(x) atan(x) sin(x) cos(x) tan(x) sqrt(x) exp(x) pow(x,y) log(x) log10(x) ceil(x) floor(x) fabs(x)
  • 4. 1) ก acos(x) #, ก ( %' = ' arc cosine / x !" ( x #, ' )3) " !" (radian) 6#0 acos(x); 2) ก asin(x) #, ก ( %' = ' arc sine / x !" ( x #, ' )3) " !" 6#0 asin(x); 3) ก atan(x) #, ก ( %' = ' arc tan / x !" ( x #, ' )3) " !" 6#0 atan(x);
  • 5. 4) ก sin(x) #, ก ( %' = ' sine / x !" ( x #, ' )3) " !" 6#0 sin(x); 5) ก cos(x) #, ก ( %' = ' cosine / x !" ( x #, ' )3) " !" 6#0 cos(x); 6) ก tan(x) #, ก ( %' = ' tan / x !" ( x #, ' )3) " !" 6#0 tan(x);
  • 6. 9( ' ) /% ก % ก acos(x), asin(x), atan(x), sin(x), cos(x) 0 tan(x) ) ก"-( / %>ก # 0ก )* " * $# "# $ก %&' 7.1 0 ! ก % ก acos(x), asin(x), atan(x), sin(x), cos(x) 0 tan(x) * math1.c */ #include<stdio.h> /* ! ( 1 */ #include<math.h> /* ! ( 2 */ #include<conio.h> /* ! ( 3 */ void main(void) /* ! ( 4 */ { /* ! ( 5 */ double r, pi = 3.141592654; /* ! ( 6 */ r = pi/180; /* ! ( 7 */ clrscr(); /* ! ( 8 */ printf("%fn",asin(r)); /* ! ( 9 */ printf("%fn",acos(r)); /* ! ( 10 */ printf("%fn",atan(r)); /* ! ( 11 */ printf("%fn",sin(r)); /* ! ( 12 */ printf("%fn",cos(r)); /* ! ( 13 */ printf("%fn",tan(r)); /* ! ( 14 */ printf("nPress any key back to program ..."); /* ! ( 15 */ getch(); /* ! ( 16 */ } /* ! ( 17 */
  • 7. ())*+ , -. ก"# $ก
  • 8. ' ?- " # 0ก ) ก # 0ก )* " ( 7.1 ) ?- "ก / # 0ก ) ( 'N & $!%! ! ( 9 ' ( printf("%fn",asin(r)); ก ' = ' arc sin / * 0# r !" r #, )3) " !" 0 0 ! . 9? ($!% ก 9 ! ( 10 ' ( printf("%fn",acos(r)); ก ' = ' arc cosine / * 0# r !" r #, )3) " !" 0 0 ! . 9? ($!% ก 9 ! ( 11 ' ( printf("%fn",atan(r)); ก ' = ' arc tan / * 0# r !" r #, )3) " !" 0 0 ! . 9? ($!% ก 9 ! ( 12 ' ( printf("%fn",sin(r)); ก ' = ' sine / * 0# r !" r #, )3) " !" 0 0 ! . 9? ($!% ก 9 ! ( 13 ' ( printf("%fn",cos(r)); ก ' = ' cosine / * 0# r !" r #, )3) " !" 0 0 ! . 9? ($!% ก 9 ! ( 14 ' ( printf("%fn",tan(r)); ก ' = ' tan / * 0# r !" r #, )3) " !" 0 0 ! . 9? ($!% ก 9 ! ( 15 0 16 9-)9/% ' ) %ก!'" ! & 9( ก 6 # 0ก ) 0 "3! ' ! & ก! enter ก /% 6 # 0ก ) /* ! ( 17 */
  • 9. 7) ก sqrt(x) #, ก ( % ' ก ( 2 (square root) / ' ' ( * 0# x !" ( x *% #, ' ' ( -! * / * 0# )' $)*-! ( 6#0 sqrt(x); 8) ก exp(x) #, ก ( % ' ex !" ( x #, ' ' ( * 0# ( % #, ' "กก / e !" ( e )' # ) = 2.718282 6#0 exp(x); 9) ก pow(x,y) #, ก ( % ' xy !" ( x #, ' ' ( * 0# ( % #, * + 8( *% )' ) กก >6 " y #, ' ' ( * 0# ( % #, ' "กก 6#0 pow(x, y);
  • 10. 1.2 ก ก(" ก * ก (character functions) #, ก ( %ก /% )6 ) -! #, single char ( ( % ( 1 byte) 0 ก ( % ก # *% %' ( #include<ctype.h> 0 ก "6 * *% / # 0ก ) ) "ก % ก # $!% ก ก(" ก * ก ( 'N isalnum(ch), isalpha(ch), isdigit(ch), islower(ch), isupper(ch), tolower(ch), toupper(ch), isspace(ch), isxdigit(ch) 1.3 ก ก(" ก * - (string functions) #, ก ( ก /% )6 -! * - (string) % !"ก ( % ก # *% %' ( #include<string.h> 0 ก "6* *% / # 0ก ) "ก "ก % ก # $!% ก ก(" ก * - ( 'N strlen(s), strcmp(s1,s2) , strcpy(s), strcat(s1,s2) 1.4 ก ( $# ( % "& ก clrscr( ) #, ก ( % ก /% )6 ก ก 90 text mode ก gotoxy(x,y) #, ก ( ' ( %* * 0 % (cursor) ' ( ($#" * 0 ( 3$ % 9 ก sizeof(x) #, ก ( %* / !/ * 0# x )/ !ก( Byte
  • 11. 2. ก ( /" / (user defined functions) ก ( /" / ' "ก # 0ก )" " ' / # 0ก ) ( /" / 9( % ) $!% " ! " ( * )' ) *% ก .6% /" # 0ก ) C -") "ก # 0ก )" " : ก : .6% ( /" # 0ก ) # ' ' 0 -ก -") "ก : # 0ก )" ": " $ ก1* ) # 0ก )" " ก ก1) ก = ก ) ก 9" 0* "ก ( * ก ก "ก ก 8( #, ก " 6% ก(" ก ( /" / (user define functions : UDF) * 0*ก # ก > 6#0 ก ก /" * ก 0 ก "ก % ก 9( % ) % ก ( /" / # 0ก ) C $!% " 6ก*% ก /" ก / ) % " ! " ( ) 0 ก ก ( /" / * ) ก = ก ' $#0 ' ก $!% 3 0 ' 2.1 ก ($))ก ' $#0 'ก 2.2 ก )ก ' $#0*$)) ' ก ( 2.3 ก ) ก ' $#0 ( 'ก 8( ก 0* 0 ก1 ) ก 0* " ! .6% /" ก #, ( *% >ก ' ) /% ก 0* 0 9( $!%) # "3ก* %ก $!% " ) )
  • 12. ) ก - " 9 / ' ).6/3 / ( 3 " #O- *- - ?- *- ).6/3 / ( 4 " ? -* * - -" ).6/3 / ( 8 " ก P- .- ) ).6/3 / ( 13 3 " กQ*=+ ก 6 ).6/3 / ( 14 " - "3 ? ' ).6/3 / ( 20