C

Size: px
Start display at page:

Download "C"

Transcription

1 C

2 /156 C

3 typedef /156 C

4 1.

5 5/156 C

6 I 1 // book.c: 2 #include<stdio.h> 3 #define MAXTITL 41 4 #define MAXAUTL 31 5 struct book 6 { 7 char title[maxtitl]; 8 char author[maxautl]; 9 float value; 10 }; int main(void) 13 { 6/156 C

7 II 14 struct book library; printf("please enter the book title.\n"); 17 gets(library.title); printf("please enter the author.\n"); 20 gets(library.author); printf("now enter the value.\n"); 23 scanf("%f", &library.value); printf("%s by %s: %.2f\n", library.title, 26 library.author, library.value); 27 printf("%s: *%s* (%.2f)\n", library.title, 7/156 C

8 III 28 library.author, library.value); return 0; 31 } 8/156 C

9 Please enter the book title. C primer plus Please enter the author. Stephan Prata Now enter the value. 80 C primer plus by Stephan Prata: C primer plus: *Stephan Prata* (80.00) Done. 9/156 C

10 3 (member) 10/156 C

11 2.

12 (structure declaration) struct book { char title[maxtitl]; char author[maxautl]; float value; }; char float 12/156 C

13 struct (book) struct book library; library book C 13/156 C

14 14/156 C

15 3.

16 struct book library; book MAXTITL char MAXAUTL char float library 16/156 C

17 struct book int float struct book struct book lib1, lib2, * ptbook; 17/156 C

18 1 struct book library; 1 struct book 2 { 3 char title[maxtitl]; 4 char author[maxautl]; 5 float value; 6 } library; 18/156 C

19 1 struct 2 { 3 char title[maxtitl]; 4 char author[maxautl]; 5 float value; 6 } library; 19/156 C

20 3.1

21 1 struct book library = { 2 "C primer plus", 3 "Stephan Prata", }; 21/156 C

22 3.2

23 char float int 23/156 C

24 char float int (.) library.value library value float library.value.title.author.value book 23/156 C

25 3.3

26 C99 book value struct book surprise = {.value = 20.50}; struct book gift = {.value = 40.50,.author = "Dennis M. Ritchie",.title = "The C programming language" }; 25/156 C

27 4.

28 4.1

29 I 1 // manybook.c: 2 #include<stdio.h> 3 #define MAXTITL 41 4 #define MAXAUTL 31 5 #define MAXBOOK struct book 7 { 8 char title[maxtitl]; 9 char author[maxautl]; 10 float value; 11 }; int main(void) 28/156 C

30 II 14 { 15 struct book library[maxbook]; 16 int count = 0; 17 int i; printf("enter the book title.\n"); 20 printf("press [enter] at the start of a line to stop.\n"); 21 while (count < MAXBOOK 22 && gets(library[count].title)!= NULL 23 && library[count].title[0]!= \0 ) { 24 printf("enter the author.\n"); 25 gets(library[count].author); 26 printf("enter the value.\n"); 29/156 C

31 III 27 scanf("%f", &library[count++].value); 28 while(getchar()!= \n ) 29 continue; 30 if (count < MAXBOOK) 31 printf("enter the next title.\n"); 32 } if (count > 0) { 35 printf("here is the list of your book:\n"); 36 for (i = 0; i < count; i++) 37 printf("%s by %s: %.2f\n", library[i].title, 38 library[i].author, library[i].value); 39 } else { 40 printf("no book? Too bad!\n"); 30/156 C

32 IV 41 } return 0; 44 } 31/156 C

33 Enter the book title. Press [enter] at the start of a line to stop. C primer plus[enter] Enter the author. Stephan Prata[enter] Enter the value. 80[enter] Enter the next title. C programing language[enter] Enter the author. Dennis Ritchie[enter] Enter the value. 40[enter] Enter the next title. 32/156 C

34 Here is the list of your book: C primer plus by Stephan Prata: C programing language by Dennis Ritchie: /156 C

35 4.2

36 struct book library[maxbook]; MAXBOOK book library struct book 35/156 C

37 4.3

38 library[0].value; library[4].title; library[2].title[4]; // 1 value // 5 title // 3 title // 5 37/156 C

39 5.

40 Shalala 39/156 C

41 I 1 #include<stdio.h> 2 #define LEN const char * msgs[5] = { 5 " Thank your for the wonderful evening, ", 6 "You certainly prove that a ", 7 "is a special kind of guy. We must get together", 8 "over a delicous ", 9 "and have a few laughs" 10 }; struct names { 13 char first[len]; 40/156 C

42 II 14 char last[len]; 15 }; struct guy { 18 struct names handle; 19 char favfood[len]; 20 char job[len]; 21 float income; 22 }; int main(void) 25 { 26 struct guy fellow = { 27 {"Ewen", "Villard"}, 41/156 C

43 III 28 "grilled salmon", 29 "personality coach", }; printf("dear %s, \n\n", fellow.handle.first); 34 printf("%s%s.\n", msgs[0], fellow.handle.first); 35 printf("%s%s\n", msgs[1], fellow.job); 36 printf("%s\n", msgs[2]); 37 printf("%s%s%s", msgs[3], fellow.favfood, msgs[4]); 38 if (fellow.income > ) 39 puts("!!"); 40 else if (fellow.income > ) 41 puts("!"); 42/156 C

44 IV 42 else 43 puts("."); printf("\n%40s%s\n", " ", "See you soon, "); 46 printf("%40s%s\n", " ", "Shalala"); return 0; 49 } 43/156 C

45 Dear Ewen, Thank your for the wonderful evening, Ewen. You certainly prove that a personality coach is a special kind of guy. We must get together over a delicous grilled salmonand have a few laughs. See you soon, Shalala 44/156 C

46 fellow.handle.first 45/156 C

47 6.

48 1. 2. C 3. 47/156 C

49 6.1

50 struct guy * him; him guy barney guy him = &barney; & 49/156 C

51 fellow fellow[0] him fellow[0] him = &fellow[0]; 50/156 C

52 6.2

53 him fellow[0] 1. -> him->income is fellow[0].income if him == &fellow[0] him him->income him 2. fellow[0].income == (*him).income * 52/156 C

54 him fellow[0] fellow[0].income == (*him).income == him->income 53/156 C

55 7.

56 /156 C

57 7.1

58 int, char, float, double 57/156 C

59 58/156 C

60 I 1 // funds1.c: 2 #include<stdio.h> 3 #define LEN 50 4 struct funds { 5 char bank[len]; 6 double bankfund; 7 char save[len]; 8 double savefund; 9 }; double sum(double, double); int main(void) 59/156 C

61 II 14 { 15 struct funds stan = { 16 "Hankou Bank", , 18 "Lucky s Savings and Loan", }; printf("stan has a total of %.2f.\n", 23 sum(stan.bankfund, stan.savefund)); 24 } double sum(double x, double y) 27 { 60/156 C

62 III 28 return (x + y); 29 } 61/156 C

63 sum() double modify(&stan.bankfund); 62/156 C

64 7.2

65 I 1 #include<stdio.h> 2 #define LEN 50 3 struct funds { 4 char bank[len]; 5 double bankfund; 6 char save[len]; 7 double savefund; 8 }; 9 10 double sum(const struct funds *); int main(void) 13 { 64/156 C

66 II 14 struct funds stan = { 15 "Hankou Bank", , 17 "Lucky s Savings and Loan", }; printf("stan has a total of %.2f.\n", 22 sum(&stan)); 23 } double sum(const struct funds * money) 26 { 27 return (money->bankfund + money->savefund); 65/156 C

67 III 28 } 66/156 C

68 7.3

69 I 1 // funds3.c 2 #include<stdio.h> 3 #define LEN 50 4 struct funds { 5 char bank[len]; 6 double bankfund; 7 char save[len]; 8 double savefund; 9 }; double sum(const struct funds moolah); int main(void) 68/156 C

70 II 14 { 15 struct funds stan = { 16 "Hankou Bank", , 18 "Lucky s Savings and Loan", }; printf("stan has a total of %.2f.\n", 23 sum(stan)); 24 } double sum(const struct funds moolah) 27 { 69/156 C

71 III 28 return (moolah.bankfund + moolah.savefund); 29 } 70/156 C

72 7.4

73 C n_data o_data o_data = n_data; o_data n_data 72/156 C

74 struct names right_field = {"Ruthie", "George"}; struct names captin = right_field; 73/156 C

75 C 74/156 C

76 I 1 // names1.c 2 #include <stdio.h> 3 #include <string.h> 4 5 struct namect { 6 char fname[20]; 7 char lname[20]; 8 int letters; 9 }; void getinfo(struct namect *); 12 void makeinfo(struct namect *); 13 void showinfo(const struct namect *); 75/156 C

77 II int main(void) 16 { 17 struct namect person; 18 getinfo (&person); 19 makeinfo(&person); 20 showinfo(&person); 21 return 0; 22 } void getinfo(struct namect * pst) 25 { 26 puts("enter your first name."); 27 gets(pst->fname); 76/156 C

78 III 28 puts("enter your last name."); 29 gets(pst->lname); 30 } void makeinfo(struct namect * pst) 33 { 34 pst->letters = (int) strlen(pst->fname) + 35 (int) strlen(pst->lname); 36 } void showinfo(const struct namect * pst) 39 { 40 printf("%s %s, your name contains %d letters.\n", 41 pst->fname, pst->lname, pst->letters); 77/156 C

79 IV 42 } 78/156 C

80 Enter your first name. Stepha Enter your last name. Prata Stephan Prata, your name contains 12 letters. 79/156 C

81 80/156 C

82 I 1 // names2.c 2 #include <stdio.h> 3 #include <string.h> 4 5 struct namect { 6 char fname[20]; 7 char lname[20]; 8 int letters; 9 }; struct namect getinfo(void); 12 struct namect makeinfo(struct namect); 13 void showinfo(struct namect); 81/156 C

83 II int main(void) 16 { 17 struct namect person; person = getinfo(); 20 person = makeinfo(person); 21 showinfo(person); return 0; 24 } struct namect getinfo(void) 27 { 82/156 C

84 III 28 struct namect temp; puts("enter your first name."); 31 gets(temp.fname); 32 puts("enter your last name."); 33 gets(temp.lname); return temp; 36 } struct namect makeinfo(struct namect info) 39 { 40 info.letters = (int) strlen(info.fname) + 41 (int) strlen(info.lname); 83/156 C

85 IV 42 return info; 43 } void showinfo(struct namect info) 46 { 47 printf("%s %s, your name contains %d letters.\n", 48 info.fname, info.lname, info.letters); 49 } 84/156 C

86 7.5

87 86/156 C

88 1. C 2. ANSI C const 87/156 C

89 C 2. 88/156 C

90 struct vector { double x; double y; }; a b struct vector ans, a, b; struct vector sum_vec(struct vector, struct vector);... ans = sum_vec(a, b); 89/156 C

91 struct vector ans, a, b; struct vector sum_vec(const struct vector *, const struct vector *, struct vector *);... sum_vec(&a, &b, &ans); 90/156 C

92 const 91/156 C

93 7.6

94 struct names { char first[20]; char last [20]; } struct pnames { char * first; char * last; } 93/156 C

95 struct names { char first[20]; char last [20]; } struct pnames { char * first; char * last; } 93/156 C

96 struct names name1 = {"Stephan", "Prata"}; struct pnames name2 = {"Dennis", "Ritche"}; printf("%s %s", name1.first, name2.last); 94/156 C

97 struct names name1 40 struct pnames name pnames 95/156 C

98 struct names accountant; struct pnames attorney; puts("enter the last name of you accountant"); scanf("%s", accountant.last); puts("enter the last name of you attorney"); scanf("%s", attorney.last); // 96/156 C

99 accountant scanf() attorney.last 97/156 C

100 malloc() 98/156 C

101 7.7 malloc()

102 malloc() malloc() malloc() 100/156 C

103 malloc() I 1 // names3.c 2 #include <stdio.h> 3 #include <stdlib.h> 4 #include <string.h> 5 6 struct namect { 7 char *fname; 8 char *lname; 9 int letters; 10 }; void getinfo(struct namect *); 13 void makeinfo(struct namect *); 101/156 C

104 malloc() II 14 void showinfo(const struct namect *); 15 void cleanup(struct namect *); int main(void) 18 { 19 struct namect person; 20 getinfo (&person); 21 makeinfo(&person); 22 showinfo(&person); 23 cleanup (&person); 24 return 0; 25 } void getinfo(struct namect * pst) 102/156 C

105 malloc() III 28 { 29 char temp[81]; 30 puts("enter your first name."); 31 gets(temp); 32 pst->fname = (char *) malloc (strlen(temp)+1); 33 strcpy(pst->fname, temp); 34 puts("enter your last name."); 35 gets(temp); 36 pst->lname = (char *) malloc (strlen(temp)+1); 37 strcpy(pst->lname, temp); 38 } void makeinfo(struct namect * pst) 41 { 103/156 C

106 malloc() IV 42 pst->letters = (int) strlen(pst->fname) + 43 (int) strlen(pst->lname); 44 } void showinfo(const struct namect * pst) 47 { 48 printf("%s %s, your name contains %d letters.\n", 49 pst->fname, pst->lname, pst->letters); 50 } void cleanup(struct namect * pst) 53 { 54 free(pst->fname); 55 free(pst->lname); 104/156 C

107 malloc() V 56 } 105/156 C

108 malloc() malloc() malloc() free() cleanup() 106/156 C

109 8.

110 (union) 108/156 C

111 union hold { int digit; double bigfl; char letter; } int double char 109/156 C

112 3 hold union hold fit; union hold save[10]; union hold * pu; fit double 8 save 10 8 hold 110/156 C

113 C99 union hold vala; vala.letter = R ; union hold valb = vala; union hold valc = {88}; union hold vald = {.bigfl = 118.2}; 111/156 C

114 union hold fit; fit.digit = 23; fit.bigfl = 2.0; fit.letter = h ; // 23 fit 2 // // 2.0 h 1 112/156 C

115 -> union hold * pu; union hold fit; pu = & fit; x = pu->digit; // x = fit.digit fit.letter = A ; flnum = 3.2 * fit.bigfl; // 113/156 C

116 struct owner { char socsecurity[20];... }; struct leasecompany { char name[40]; char headquarters[40];... } 114/156 C

117 union data { struct owner owncar; struct leasecompany leasecar; }; struct car_data{ char make[15]; int status; // 0 = 1 = union data owerinfo;... } 115/156 C

118 honda car_data honda.status 0 honda.owerinfo.owncar.socsecurity honda.status 1 honda.owerinfo.leasecar.name 116/156 C

119 9.

120 (enumerated type) enum enum int int 118/156 C

121 enum spectrum {red, orange, yellow, green, blue}; enum spectrum color; spectrum enum spectrum color spectrum 119/156 C

122 int c; color = blue; if (color == yellow)... for (color = red; color <= blue; color++)... spectrum /156 C

123 printf("red = %d, orange = %d\n", red, orange); red = 0, orange = 1 red /156 C

124 0 1 2 nina 3 enum kids {nippy, slats, skippy, nina, liz}; 122/156 C

125 enum levels {low = 100, medium = 500, high = 2000}; enum feline {cat, lynx = 10, puma, tiger}; cat 0 lynx puma tiger /156 C

126 enum red blue /156 C

127 enum I 1 #include <stdio.h> 2 #include <string.h> 3 #include <stdbool.h> 4 5 enum spectrum {red, orange, yellow, green, blue, violet}; 6 const char * colors[] = { "red", "orange", "yellow", 7 "green", "blue", "violet" }; 8 #define LEN int main(void) 11 { 12 char choice[len]; 125/156 C

128 enum II 13 enum spectrum color; 14 bool color_is_found = false; puts("enter a color (empty line to quit):"); 17 while (gets(choice)!= NULL && choice[0]!= \0 ) { 18 for (color = red; color <= violet; color++) { 19 if (strcmp(choice, colors[color]) == 0) { 20 color_is_found = true; 21 break; 22 } 23 } 24 if (color_is_found) 25 switch (color) { 26 case red : 126/156 C

129 enum III 27 puts("roes are red."); 28 break; 29 case orange : 30 puts("poppies are orange."); 31 break; 32 case yellow : 33 puts("sunflowers are yellow."); 34 break; 35 case green : 36 puts("grass is green."); 37 break; 38 case blue : 39 puts("bluebells are blue."); 40 break; 127/156 C

130 enum IV 41 case violet : 42 puts("violets are violet."); 43 break; 44 } 45 else 46 printf("i don t know about the color %s.\n", choice); 47 color_is_found = false; 48 puts("next color, please (empty line to quit): ") ; 49 } 50 puts("goodbye!"); return 0; 128/156 C

131 enum V 53 } 129/156 C

132 enum I Enter a color (empty line to quit): orange Poppies are orange. Next color, please (empty line to quit): blue Bluebells are blue. Next color, please (empty line to quit): red Roes are red. Next color, please (empty line to quit): sdf I don t know about the color sdf. Next color, please (empty line to quit): 130/156 C

133 enum II Goodbye! 131/156 C

134 10. typedef

135 typedef typedef #define #define typedef typedef typedef #define 133/156 C

136 typedef typedef unsigned char BYTE; BYTE x, y[10], * z; unsigned char BYTE BYTE typedef 134/156 C

137 typedef typedef char * STRING; STRING char STRING name, sign; char * name, * sign; 135/156 C

138 typedef #define STRING char *; STRING name, sign; char * name, sign; 136/156 C

139 typedef typedef typedef struct complex { float real; float imag; } COMPLEX; COMPLEX struct complex typedef 137/156 C

140 typedef typedef typedef struct { double x; double y; } vector; 138/156 C

141 typedef vector v1 = {3.0, 6.0}; vector v2; v2 = v1; struct { double x; double y; } v1 = {3.0, 6.0}; struct { double x; double y; } v2; v2 = v1; 139/156 C

142 typedef typedef typedef typedef char(* FRPTC()) [5]; FRPTC 5 char 140/156 C

143 typedef typedef 141/156 C

144 11.

145 int board[8][8]; //int int ** ptr; // int int * risk[10]; // 10 int int (* rusk) [10]; // 10 int int * oof[3][4]; // 3x4 int int (* uuf) [3][4]; // 3X4 int int (* uof [3]) [4]; // 3 // 4 int 143/156 C

146 char * fump(); // char char (* frump) (); // char char (* flump[3]) (); // 3 char 144/156 C

147 typedef int arr5[5] typedef arr5 * p_arr5; typedef p_arr5 arrp10[10]; arr5 togs; //togs 5 int p_arr5 p2; //p2 5 int arrp10 ap; //ap 10 // 5 int 145/156 C

148 12.

149 12.1

150 int * int * f (int a, int b); 148/156 C

151 I 1 #include <stdio.h> 2 #include <stdlib.h> 3 int * f(int a, int b); 4 int main(void) 5 { 6 int * p1 = NULL; 7 printf("the memeory address of p1 = %p \n", p1); 8 p1 = f(1, 2); 9 printf("the memeory address of p1 = %p \n", p1); 10 printf("*p1 = %d \n", *p1); 11 return 0; 12 } /156 C

152 II 14 int * f(int a, int b) { 15 int * p = (int *)malloc(sizeof(int)); printf("the memeory address of p = %p \n", p); 18 *p = a + b; 19 printf("*p = %d \n", *p); return p; 22 } 150/156 C

153 The memeory address of p1 = (nil) The memeory address of p = 0x12c0010 *p = 3 The memeory address of p1 = 0x12c0010 *p1 = 3 151/156 C

154 12.2

155 int (* f) (int a, int b); * 153/156 C

156 I 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int max(int a, int b) 5 { 6 return (a > b? a : b); 7 } 8 9 int min(int a, int b) 10 { 11 return (a < b? a : b); 12 } /156 C

157 II 14 int (*f) (int, int); int main(void) 17 { f = max; 20 int c = (*f) (1, 2); 21 printf("the max value is %d \n", c); f = min; 24 c = (*f) (1, 2); 25 printf("the min value is %d \n", c); return 0; 155/156 C

158 III 28 } 156/156 C

159 The max value is 2 The min value is 1 157/156 C

C/C++ - 结构体、共用体、枚举体

C/C++ - 结构体、共用体、枚举体 C/C++ Table of contents 1. 2. 3. 4. 5. 6. 7. 8. 1 C C (struct) C 2 C C (struct) C 2 i // book.c: # include < stdio.h> # define MAX_ TITLE 41 # define MAX_ AUTHOR 31 struct book { char title [ MAX_ TITLE

More information

C

C C 2017 3 14 1. 2. 3. 4. 2/95 C 1. 3/95 C I 1 // talkback.c: 2 #include 3 #include 4 #define DENSITY 62.4 5 int main(void) 6 { 7 float weight, volume; 8 int size; 9 unsigned long letters;

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

C/C++ - 字符输入输出和字符确认

C/C++ - 字符输入输出和字符确认 C/C++ Table of contents 1. 2. getchar() putchar() 3. (Buffer) 4. 5. 6. 7. 8. 1 2 3 1 // pseudo code 2 read a character 3 while there is more input 4 increment character count 5 if a line has been read,

More information

C/C++语言 - 运算符、表达式和语句

C/C++语言 - 运算符、表达式和语句 C/C++ Table of contents 1. 2. 3. 4. C C++ 5. 6. 7. 1 i // shoe1.c: # include # define ADJUST 7. 64 # define SCALE 0. 325 int main ( void ) { double shoe, foot ; shoe = 9. 0; foot = SCALE * shoe

More information

C/C++ - 字符串与字符串函数

C/C++ - 字符串与字符串函数 C/C++ Table of contents 1. 2. 3. 4. 1 char C 2 char greeting [50] = " How " " are " " you?"; char greeting [50] = " How are you?"; 3 printf ("\" Ready, go!\" exclaimed John."); " Ready, go!" exclaimed

More information

C/C++ 语言 - 循环

C/C++ 语言 - 循环 C/C++ Table of contents 7. 1. 2. while 3. 4. 5. for 6. 8. (do while) 9. 10. (nested loop) 11. 12. 13. 1 // summing.c: # include int main ( void ) { long num ; long sum = 0L; int status ; printf

More information

C/C++ - 函数

C/C++ - 函数 C/C++ Table of contents 1. 2. 3. & 4. 5. 1 2 3 # include # define SIZE 50 int main ( void ) { float list [ SIZE ]; readlist (list, SIZE ); sort (list, SIZE ); average (list, SIZE ); bargragh

More information

新版 明解C言語入門編

新版 明解C言語入門編 328, 4, 110, 189, 103, 11... 318. 274 6 ; 10 ; 5? 48 & & 228! 61!= 42 ^= 66 _ 82 /= 66 /* 3 / 19 ~ 164 OR 53 OR 164 = 66 ( ) 115 ( ) 31 ^ OR 164 [] 89, 241 [] 324 + + 4, 19, 241 + + 22 ++ 67 ++ 73 += 66

More information

C/C++程序设计 - 字符串与格式化输入/输出

C/C++程序设计 - 字符串与格式化输入/输出 C/C++ / Table of contents 1. 2. 3. 4. 1 i # include # include // density of human body : 1. 04 e3 kg / m ^3 # define DENSITY 1. 04 e3 int main ( void ) { float weight, volume ; int

More information

C C

C C C C 2017 3 8 1. 2. 3. 4. char 5. 2/101 C 1. 3/101 C C = 5 (F 32). 9 F C 4/101 C 1 // fal2cel.c: Convert Fah temperature to Cel temperature 2 #include 3 int main(void) 4 { 5 float fah, cel; 6 printf("please

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 177 [P179] (1) - [P181] [P182] (2) - for [P183] (3) - switch [P184] [P187] [P189] [P194] 178 [ ]; : : int var; : int var[3]; var 2293620 var[0] var[1] 2293620

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 49 [P.51] C/C++ [P.52] [P.53] [P.55] (int) [P.57] (float/double) [P.58] printf scanf [P.59] [P.61] ( / ) [P.62] (char) [P.65] : +-*/% [P.67] : = [P.68] : ,

More information

C

C C 2017 4 1 1. 2. while 3. 4. 5. for 6. 2/161 C 7. 8. (do while) 9. 10. (nested loop) 11. 12. 3/161 C 1. I 1 // summing.c: 2 #include 3 int main(void) 4 { 5 long num; 6 long sum = 0L; 7 int status;

More information

untitled

untitled 不 料 料 例 : ( 料 ) 串 度 8 年 數 串 度 4 串 度 數 數 9- ( ) 利 數 struct { ; ; 數 struct 數 ; 9-2 數 利 數 C struct 數 ; C++ 數 ; struct 省略 9-3 例 ( 料 例 ) struct people{ char name[]; int age; char address[4]; char phone[]; int

More information

新・明解C言語入門編『索引』

新・明解C言語入門編『索引』 !... 75!=... 48 "... 234 " "... 9, 84, 240 #define... 118, 213 #include... 148 %... 23 %... 23, 24 %%... 23 %d... 4 %f... 29 %ld... 177 %lf... 31 %lu... 177 %o... 196 %p... 262 %s... 242, 244 %u... 177

More information

C/C++语言 - 分支结构

C/C++语言 - 分支结构 C/C++ Table of contents 1. if 2. if else 3. 4. 5. 6. continue break 7. switch 1 if if i // colddays.c: # include int main ( void ) { const int FREEZING = 0; float temperature ; int cold_ days

More information

新・解きながら学ぶC言語

新・解きながら学ぶC言語 330!... 67!=... 42 "... 215 " "... 6, 77, 222 #define... 114, 194 #include... 145 %... 21 %... 21 %%... 21 %f... 26 %ld... 162 %lf... 26 %lu... 162 %o... 180 %p... 248 %s... 223, 224 %u... 162 %x... 180

More information

C/C++语言 - C/C++数据

C/C++语言 - C/C++数据 C/C++ C/C++ Table of contents 1. 2. 3. 4. char 5. 1 C = 5 (F 32). 9 F C 2 1 // fal2cel. c: Convert Fah temperature to Cel temperature 2 # include < stdio.h> 3 int main ( void ) 4 { 5 float fah, cel ;

More information

C

C C 14 2017 5 31 1. 2. 3. 4. 5. 2/101 C 1. ( ) 4/101 C C ASCII ASCII ASCII 5/101 C 10000 00100111 00010000 ASCII 10000 31H 30H 30H 30H 30H 1 0 0 0 0 0 ASCII 6/101 C 7/101 C ( ) ( ) 8/101 C UNIX ANSI C 9/101

More information

int *p int a 0x00C7 0x00C7 0x00C int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++;

int *p int a 0x00C7 0x00C7 0x00C int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++; Memory & Pointer trio@seu.edu.cn 2.1 2.1.1 1 int *p int a 0x00C7 0x00C7 0x00C7 2.1.2 2 int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++; 2.1.3 1. 2. 3. 3 int A,

More information

C 1

C 1 C homepage: xpzhangme 2018 5 30 C 1 C min(x, y) double C // min c # include # include double min ( double x, double y); int main ( int argc, char * argv []) { double x, y; if( argc!=

More information

Microsoft Word - 把时间当作朋友(2011第3版)3.0.b.06.doc

Microsoft Word - 把时间当作朋友(2011第3版)3.0.b.06.doc 2 5 8 11 0 13 1. 13 2. 15 3. 18 1 23 1. 23 2. 26 3. 28 2 36 1. 36 2. 39 3. 42 4. 44 5. 49 6. 51 3 57 1. 57 2. 60 3. 64 4. 66 5. 70 6. 75 7. 83 8. 85 9. 88 10. 98 11. 103 12. 108 13. 112 4 115 1. 115 2.

More information

_汪_文前新ok[3.1].doc

_汪_文前新ok[3.1].doc 普 通 高 校 本 科 计 算 机 专 业 特 色 教 材 精 选 四 川 大 学 计 算 机 学 院 国 家 示 范 性 软 件 学 院 精 品 课 程 基 金 青 年 基 金 资 助 项 目 C 语 言 程 序 设 计 (C99 版 ) 陈 良 银 游 洪 跃 李 旭 伟 主 编 李 志 蜀 唐 宁 九 李 涛 主 审 清 华 大 学 出 版 社 北 京 i 内 容 简 介 本 教 材 面 向

More information

nooog

nooog C : : : , C C,,, C, C,, C ( ), ( ) C,,, ;,, ; C,,, ;, ;, ;, ;,,,, ;,,, ; : 1 9, 2 3, 4, 5, 6 10 11, 7 8, 12 13,,,,, 2008 1 1 (1 ) 1.1 (1 ) 1.1.1 ( ) 1.1.2 ( ) 1.1.3 ( ) 1.1.4 ( ) 1.1.5 ( ) 1.2 ( ) 1.2.1

More information

FY.DOC

FY.DOC 高 职 高 专 21 世 纪 规 划 教 材 C++ 程 序 设 计 邓 振 杰 主 编 贾 振 华 孟 庆 敏 副 主 编 人 民 邮 电 出 版 社 内 容 提 要 本 书 系 统 地 介 绍 C++ 语 言 的 基 本 概 念 基 本 语 法 和 编 程 方 法, 深 入 浅 出 地 讲 述 C++ 语 言 面 向 对 象 的 重 要 特 征 : 类 和 对 象 抽 象 封 装 继 承 等 主

More information

untitled

untitled 1 1.1 1.2 1.3 1.4 1.5 ++ 1.6 ++ 2 BNF 3 4 5 6 7 8 1.2 9 1.2 IF ELSE 10 1.2 11 1.2 12 1.3 Ada, Modula-2 Simula Smalltalk-80 C++, Objected Pascal(Delphi), Java, C#, VB.NET C++: C OOPL Java: C++ OOPL C# C++

More information

新版 明解C++入門編

新版 明解C++入門編 511!... 43, 85!=... 42 "... 118 " "... 337 " "... 8, 290 #... 71 #... 413 #define... 128, 236, 413 #endif... 412 #ifndef... 412 #if... 412 #include... 6, 337 #undef... 413 %... 23, 27 %=... 97 &... 243,

More information

Microsoft Word - 第3章.doc

Microsoft Word - 第3章.doc Java C++ Pascal C# C# if if if for while do while foreach while do while C# 3.1.1 ; 3-1 ischeck Test() While ischeck while static bool ischeck = true; public static void Test() while (ischeck) ; ischeck

More information

プログラムの設計と実現II

プログラムの設計と実現II UNIX C ls mkdir man http://www.tj.chiba-u.jp/lecture/prog2/ Ctrl+x, Ctrl+s ( )..[4]% gcc Wall o hoge hoge.c..[5]%./hoge 1 : 1 2 : 2 3 : 3 4 : 0 6..[6]% (! )..[4]% gcc Wall o hoge hoge.c..[5]%!g gcc Wall

More information

( CIP) /. :, ( ) ISBN TP CIP ( 2005) : : : : * : : 174 ( A ) : : ( 023) : ( 023)

( CIP) /. :, ( ) ISBN TP CIP ( 2005) : : : : * : : 174 ( A ) : : ( 023) : ( 023) ( CIP) /. :, 2005. 2 ( ) ISBN 7-5624-3339-9.......... TP311. 1 CIP ( 2005) 011794 : : : : * : : 174 ( A ) :400030 : ( 023) 65102378 65105781 : ( 023) 65103686 65105565 : http: / /www. cqup. com. cn : fxk@cqup.

More information

untitled

untitled 3 C++ 3.1 3.2 3.3 3.4 new delete 3.5 this 3.6 3.7 3.1 3.1 class struct union struct union C class C++ C++ 3.1 3.1 #include struct STRING { typedef char *CHARPTR; // CHARPTR s; // int strlen(

More information

6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C C C51 C51 ANSI C MCS-51 C51 ANSI C C C51 bit Byte bit sbit

6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C C C51 C51 ANSI C MCS-51 C51 ANSI C C C51 bit Byte bit sbit 6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C51 6.1 C51 6.1.1 C51 C51 ANSI C MCS-51 C51 ANSI C C51 6.1 6.1 C51 bit Byte bit sbit 1 0 1 unsigned char 8 1 0 255 Signed char 8 11 128

More information

新・解きながら学ぶJava

新・解きながら学ぶJava 481! 41, 74!= 40, 270 " 4 % 23, 25 %% 121 %c 425 %d 121 %o 121 %x 121 & 199 && 48 ' 81, 425 ( ) 14, 17 ( ) 128 ( ) 183 * 23 */ 3, 390 ++ 79 ++ 80 += 93 + 22 + 23 + 279 + 14 + 124 + 7, 148, 16 -- 79 --

More information

epub 33-8

epub 33-8 8 1) 2) 3) A S C I I 4 C I / O I / 8.1 8.1.1 1. ANSI C F I L E s t d i o. h typedef struct i n t _ f d ; i n t _ c l e f t ; i n t _ m o d e ; c h a r *_ n e x t ; char *_buff; /* /* /* /* /* 1 5 4 C FILE

More information

数据结构与算法 - Python基础

数据结构与算法 - Python基础 Python 教材及课件 课件及作业见网址 xpzhang.me 1 1. Python 2. 3. (list) (tuple) 4. (dict) (set) 5. 6. 7. 2 Python Python 3 Python 4 Python 1, 100, -8080, 0,... 0x 0-9, a-f 0 xff00, 0 xa432bf 5 1.24, 3.14, -9.80,...

More information

untitled

untitled 1 Outline 數 料 數 數 列 亂數 練 數 數 數 來 數 數 來 數 料 利 料 來 數 A-Z a-z _ () 不 數 0-9 數 不 數 SCHOOL School school 數 讀 school_name schoolname 易 不 C# my name 7_eleven B&Q new C# (1) public protected private params override

More information

C/C++ - 数组与指针

C/C++ - 数组与指针 C/C++ Table of contents 1. 2. 3. 4. 5. 6. 7. 8. 1 float candy [ 365]; char code [12]; int states [50]; 2 int array [6] = {1, 2, 4, 6, 8, 10}; 3 // day_mon1.c: # include # define MONTHS 12 int

More information

Microsoft Word - 97.01.30軟體設計第二部份範例試題_C++_ _1_.doc

Microsoft Word - 97.01.30軟體設計第二部份範例試題_C++_ _1_.doc 電 腦 軟 體 設 計 乙 級 技 術 士 技 能 檢 定 術 科 測 試 範 例 試 題 (C++) 試 題 編 號 :11900-920201-4 審 定 日 期 : 94 年 7 月 1 日 修 訂 日 期 : 96 年 2 月 1 日 97 年 1 月 30 日 ( 第 二 部 份 ) 電 腦 軟 體 設 計 乙 級 技 術 士 技 能 檢 定 術 科 測 試 應 檢 參 考 資 料 壹 試

More information

ebook39-5

ebook39-5 5 3 last-in-first-out, LIFO 3-1 L i n e a r L i s t 3-8 C h a i n 3 3. 8. 3 C + + 5.1 [ ] s t a c k t o p b o t t o m 5-1a 5-1a E D 5-1b 5-1b E E 5-1a 5-1b 5-1c E t o p D t o p D C C B B B t o p A b o

More information

C C C The Most Beautiful Language and Most Dangerous Language in the Programming World! C 2 C C C 4 C 40 30 10 Project 30 C Project 3 60 Project 40

C C C The Most Beautiful Language and Most Dangerous Language in the Programming World! C 2 C C C 4 C 40 30 10 Project 30 C Project 3 60 Project 40 C C trio@seu.edu.cn C C C C The Most Beautiful Language and Most Dangerous Language in the Programming World! C 2 C C C 4 C 40 30 10 Project 30 C Project 3 60 Project 40 Week3 C Week5 Week5 Memory & Pointer

More information

untitled

untitled Introduction to Programming ( 數 ) Lecture 3 Spring 2005 March 4, 2005 Lecture 2 Outline 數 料 If if 狀 if 2 (Standard Output, stdout): 料. ((Standard Input, stdin): 料. 類 數 數 數 說 printf 見 數 puts 串 數 putchar

More information

chap07.key

chap07.key #include void two(); void three(); int main() printf("i'm in main.\n"); two(); return 0; void two() printf("i'm in two.\n"); three(); void three() printf("i'm in three.\n"); void, int 标识符逗号分隔,

More information

Microsoft PowerPoint - ds-1.ppt [兼容模式]

Microsoft PowerPoint - ds-1.ppt [兼容模式] http://jwc..edu.cn/jxgl/ HomePage/Default.asp 2 说 明 总 学 时 : 72( 学 时 )= 56( 课 时 )+ 16( 实 验 ) 行 课 时 间 : 第 1 ~14 周 周 学 时 : 平 均 每 周 4 学 时 上 机 安 排 待 定 考 试 时 间 : 课 程 束 第 8 11 12 章 的 内 容 为 自 学 内 容 ; 目 录 中 标 有

More information

2013 C 1 #include <stdio.h> 2 int main(void) 3 { 4 int cases, i; 5 long long a, b; 6 scanf("%d", &cases); 7 for (i = 0; i < cases; i++) 8 { 9 scanf("%

2013 C 1 #include <stdio.h> 2 int main(void) 3 { 4 int cases, i; 5 long long a, b; 6 scanf(%d, &cases); 7 for (i = 0; i < cases; i++) 8 { 9 scanf(% 2013 ( 28 ) ( ) 1. C pa.c, pb.c, 2. C++ pa.cpp, pb.cpp Compilation Error long long cin scanf Time Limit Exceeded 1: A 10 B 1 C 1 D 5 E 5 F 1 G II 5 H 30 1 2013 C 1 #include 2 int main(void) 3

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 9 [P.11] : Dev C++ [P.12] : http://c.feis.tw [P.13] [P.14] [P.15] [P.17] [P.23] Dev C++ [P.24] [P.27] [P.34] C / C++ [P.35] 10 C / C++ C C++ C C++ C++ C ( ) C++

More information

3. 給 定 一 整 數 陣 列 a[0] a[1] a[99] 且 a[k]=3k+1, 以 value=100 呼 叫 以 下 兩 函 式, 假 設 函 式 f1 及 f2 之 while 迴 圈 主 體 分 別 執 行 n1 與 n2 次 (i.e, 計 算 if 敘 述 執 行 次 數, 不

3. 給 定 一 整 數 陣 列 a[0] a[1] a[99] 且 a[k]=3k+1, 以 value=100 呼 叫 以 下 兩 函 式, 假 設 函 式 f1 及 f2 之 while 迴 圈 主 體 分 別 執 行 n1 與 n2 次 (i.e, 計 算 if 敘 述 執 行 次 數, 不 1. 右 側 程 式 正 確 的 輸 出 應 該 如 下 : * *** ***** ******* ********* 在 不 修 改 右 側 程 式 之 第 4 行 及 第 7 行 程 式 碼 的 前 提 下, 最 少 需 修 改 幾 行 程 式 碼 以 得 到 正 確 輸 出? (A) 1 (B) 2 (C) 3 (D) 4 1 int k = 4; 2 int m = 1; 3 for (int

More information

untitled

untitled 1 7 7.1 7.2 7.3 7.4 7.5 2 7.1 VFT virtual 7.1 3 1 1. 2. public protected public 3. VFT 4. this const volatile 4 2 5. ( ) ( ) 7.1 6. no-static virtual 7.2 7. inline 7.3 5 3 8. this this 9. ( ) ( ) delete

More information

untitled

untitled A, 3+A printf( ABCDEF ) 3+ printf( ABCDEF ) 2.1 C++ main main main) * ( ) ( ) [ ].* ->* ()[] [][] ** *& char (f)(int); ( ) (f) (f) f (int) f int char f char f(int) (f) char (*f)(int); (*f) (int) (

More information

c_cpp

c_cpp C C++ C C++ C++ (object oriented) C C++.cpp C C++ C C++ : for (int i=0;i

More information

Microsoft Word - CPE考生使用手冊160524.docx

Microsoft Word - CPE考生使用手冊160524.docx 大 學 程 式 能 力 檢 定 (CPE) 考 生 使 用 手 冊 2016 年 5 月 24 日 這 份 手 冊 提 供 給 參 加 CPE 檢 定 考 試 的 考 生 內 容 包 含 考 試 環 境 的 使 用, 以 及 解 題 時 所 使 用 I/O 的 基 本 知 識 1. 如 欲 報 名 參 加 CPE 考 試, 請 先 於 CPE 網 站 完 成 帳 號 註 冊, 然 後 再 報 名 該

More information

概述

概述 OPC Version 1.6 build 0910 KOSRDK Knight OPC Server Rapid Development Toolkits Knight Workgroup, eehoo Technology 2002-9 OPC 1...4 2 API...5 2.1...5 2.2...5 2.2.1 KOS_Init...5 2.2.2 KOS_InitB...5 2.2.3

More information

Ps22Pdf

Ps22Pdf C ( CIP) C /. :, 2001. 7 21 ISBN 7-5624 -2355-5. C........ C. TP312 CIP ( 2001 ) 034496 C * * : 7871092 1 /16 : 14. 25 : 356 20017 1 20017 1 : 1 6 000 ISBN 7-5624-2355-5 / TP311 : 21. 00 C, C,,,, C,, (

More information

Microsoft Word - 01.DOC

Microsoft Word - 01.DOC 第 1 章 JavaScript 简 介 JavaScript 是 NetScape 公 司 为 Navigator 浏 览 器 开 发 的, 是 写 在 HTML 文 件 中 的 一 种 脚 本 语 言, 能 实 现 网 页 内 容 的 交 互 显 示 当 用 户 在 客 户 端 显 示 该 网 页 时, 浏 览 器 就 会 执 行 JavaScript 程 序, 用 户 通 过 交 互 式 的

More information

1. 本文首段的主要作用是 A. 指出 異蛇 的藥用功效 說明 永之人爭奔走焉 的原因 B. 突出 異蛇 的毒性 為下文 幾死者數矣 作鋪墊 C. 交代以蛇賦稅的背景 引起下文蔣氏有關捕蛇的敘述 2. 本文首段從三方面突出蛇的 異 下列哪一項不屬其中之一 A. 顏色之異 B. 動作之異 C. 毒性之

1. 本文首段的主要作用是 A. 指出 異蛇 的藥用功效 說明 永之人爭奔走焉 的原因 B. 突出 異蛇 的毒性 為下文 幾死者數矣 作鋪墊 C. 交代以蛇賦稅的背景 引起下文蔣氏有關捕蛇的敘述 2. 本文首段從三方面突出蛇的 異 下列哪一項不屬其中之一 A. 顏色之異 B. 動作之異 C. 毒性之 1. 本文首段的主要作用是 A. 指出 異蛇 的藥用功效 說明 永之人爭奔走焉 的原因 B. 突出 異蛇 的毒性 為下文 幾死者數矣 作鋪墊 C. 交代以蛇賦稅的背景 引起下文蔣氏有關捕蛇的敘述 2. 本文首段從三方面突出蛇的 異 下列哪一項不屬其中之一 A. 顏色之異 B. 動作之異 C. 毒性之異 3. 太醫以王命聚之 中的 以 字與下列哪一項的 以 意思相同 A. 以齧人 B. 而吾以捕蛇獨存

More information

bnbqw.PDF

bnbqw.PDF 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ( ( 1 2 16 1608 100004 1 ( 2003 2002 6 30 12 31 7 2,768,544 3,140,926 8 29,054,561 40,313,774 9 11,815,996 10,566,353 11 10,007,641 9,052,657 12 4,344,697

More information

nb.PDF

nb.PDF 3 4 5 7 8 9..10..15..16..19..52 -3,402,247-699,783-1,611,620 1,790,627 : - - -7,493 - -1,687 2,863 1,176 2,863 - -148,617 - - 12,131 51,325 - -12,131-2,165 14-2,157 8-3,393,968-794,198-1,620,094 1,781,367

More information

第三章

第三章 第 三 章 :2017 年 行 政 長 官 產 生 辦 法 - 可 考 慮 的 議 題 行 政 長 官 的 憲 制 及 法 律 地 位 3.01 基 本 法 第 四 十 三 條 規 定 : 香 港 特 別 行 政 區 行 政 長 官 是 香 港 特 別 行 政 區 的 首 長, 代 表 香 港 特 別 行 政 區 香 港 特 別 行 政 區 行 政 長 官 依 照 本 法 的 規 定 對 中 央 人

More information

Microsoft Word - 發布版---規範_全文_.doc

Microsoft Word - 發布版---規範_全文_.doc 建 築 物 無 障 礙 設 施 設 計 規 範 內 政 部 97 年 4 年 10 日 台 內 營 字 第 0970802190 號 令 訂 定, 自 97 年 7 月 1 日 生 效 內 政 部 97 年 12 年 19 日 台 內 營 字 第 0970809360 號 令 修 正 內 政 部 101 年 11 年 16 日 台 內 營 字 第 1010810415 號 令 修 正 目 錄 第 一

More information

概 述 随 着 中 国 高 等 教 育 数 量 扩 张 目 标 的 逐 步 实 现, 提 高 教 育 质 量 的 重 要 性 日 益 凸 显 发 布 高 校 毕 业 生 就 业 质 量 年 度 报 告, 是 高 等 学 校 建 立 健 全 就 业 状 况 反 馈 机 制 引 导 高 校 优 化 招

概 述 随 着 中 国 高 等 教 育 数 量 扩 张 目 标 的 逐 步 实 现, 提 高 教 育 质 量 的 重 要 性 日 益 凸 显 发 布 高 校 毕 业 生 就 业 质 量 年 度 报 告, 是 高 等 学 校 建 立 健 全 就 业 状 况 反 馈 机 制 引 导 高 校 优 化 招 I 概 述 随 着 中 国 高 等 教 育 数 量 扩 张 目 标 的 逐 步 实 现, 提 高 教 育 质 量 的 重 要 性 日 益 凸 显 发 布 高 校 毕 业 生 就 业 质 量 年 度 报 告, 是 高 等 学 校 建 立 健 全 就 业 状 况 反 馈 机 制 引 导 高 校 优 化 招 生 和 专 业 结 构 改 进 人 才 培 养 模 式 及 时 回 应 社 会 关 切 的 一 项

More information

鱼类丰产养殖技术(二).doc

鱼类丰产养殖技术(二).doc ...1...1...4...15...18...19...24...26...31...35...39...48...57...60...62...66...68...72 I ...73...88...91...92... 100... 104... 144... 146... 146... 147... 148... 148... 148... 149... 149... 150... 151...

More information

疾病诊治实务(一)

疾病诊治实务(一) ...1...4...5...8...13...14...15...18...18...19...22...25...26...27...29...30...32...35 I ...38...42...43...45...48...51...53...56...59...60...60...61...63...65...67...69...72...74...77...80...82...84 II

More information

名人养生.doc

名人养生.doc I...1...3...4...6... 11...14...18...22...26...29...31...38...45...49...56...57...59...61...67 ...72...73...75...77...80...83...85...91...92...93...95...96...97... 103... 107... 109... 110... 112... 118...

More information

<4D6963726F736F667420576F7264202D2040B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8735FA7F5ABD8BFB3B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8732E646F63>

<4D6963726F736F667420576F7264202D2040B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8735FA7F5ABD8BFB3B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8732E646F63> 嘉 義 地 區 客 家 禮 俗 研 究 第 一 章 前 言 嘉 義 地 區 的 客 家 族 群 約 略 可 分 為 福 佬 客 詔 安 客 與 北 部 客 等 三 種 類 別, 其 分 佈 區 域 以 海 線 地 區 平 原 地 形 沿 山 地 區 為 主 有 相 當 多 的 北 部 客 家 人, 是 二 次 大 戰 末 期 和 戰 後 初 期 才 移 民 嘉 義, 是 什 麼 因 素 令 許 多

More information

05301930

05301930 國 立 中 正 大 學 法 學 系 碩 士 論 文 河 川 砂 石 法 規 範 之 探 討 - 以 採 取 土 石 及 挖 掘 河 川 認 定 基 準 為 主 指 導 教 授 : 盧 映 潔 博 士 研 究 生 : 王 瑞 德 中 華 民 國 一 百 零 一 年 五 月 目 錄 第 一 章 緒 論... 1 第 一 節 研 究 動 機... 1 第 二 節 研 究 目 的... 3 第 三 節 研

More information

中老年保健必读(十).doc

中老年保健必读(十).doc ...1...2...3...4...5...6...8...9... 11 - -...13...15...17...18...20...22...23...25...26...28 I II...30...32...34...35...38...40...42...44...46...47...48...50...52...53 X...55...56...57...58...60...61...63...65

More information

23 29 15.6% 23 29 26.2% 3 25 2 15 1 5 1,542 12,336 14,53 16,165 18,934 22,698 25,125 25 2 15 1 5 5,557 7,48 8,877 11, 13,732 17,283 22,485 23 24 25 26

23 29 15.6% 23 29 26.2% 3 25 2 15 1 5 1,542 12,336 14,53 16,165 18,934 22,698 25,125 25 2 15 1 5 5,557 7,48 8,877 11, 13,732 17,283 22,485 23 24 25 26 4, 197823 2916.3%29 335, 23 29.5% 23 29 16.3% 14 35 33,535 14 135 13 125 1,292 1,3 1,38 1,314 1,321 1,328 1,335 3 25 2 15 1 5 1. 1.1 13,582 15,988 1.4 18,322 11.6 11.9 21,192 24,953 3,67 9. 8.7 12 1 8

More information

海淀区、房山区(四)

海淀区、房山区(四) ...1...1...2...7...8...9... 11... 15... 17... 17... 18... 19... 20... 21... 23... 25... 28... 31... 32 I ... 35... 36... 37... 39... 42... 43... 48... 53... 54... 58... 63... 64... 65... 66... 68... 71...

More information

穨ecr1_c.PDF

穨ecr1_c.PDF i ii iii iv 1 2 3 4 5 5555522 6664422 77722 6 7 8 9 10 11 22266 12833 1894 12 13 14 15 16 17 18 19 20 21 22 23 24 25 8.14 2.15 2.18 26 27 28 29 30 31 2.16 2.18 5.23 32 33 34 35 36 37 38 39 40 41 42 43

More information

穨2005_-c.PDF

穨2005_-c.PDF 2005 10 1 1 1 2 2 3 5 4 6 2 7 3 11 4 1 13 2 13 3 14 4 14 5 15 6 16 7 16 8 17 9 18 10 18 2005 10 1 1. 1.1 2 1.2 / / 1.3 69(2) 70(2) 1.4 1.5 1.6 2005 10 1 2. 2.1 2.2 485 20(8) (a) (i) (ii) (iii) (iv) 571

More information

北京理工大学.doc

北京理工大学.doc ( )...1...6...8...10...20...22...24...28...30...32...40 I ...53...55...61 ( )...62...71...74 ( )...77...81...84...86...88...89...91...92...96...99... 110...111... 112 II ... 113... 114... 115... 116...

More information

尲㐵.⸮⸮⸮⸮⸮

尲㐵.⸮⸮⸮⸮⸮ I...1...2...3...4...5...6...8...9...10... 11...12...13...14...15...16...17...18...19...20...21...22...23...24...26 II...27...28...28...29...30...31...32...34...35...36...37...38...39...39...40...41...43...43...44...45...46...47...48...48...49...50

More information

东城区(下)

东城区(下) ...1...1...2...3...9...9... 12... 12... 17... 17... 18... 19... 20... 29... 31... 37... 41... 70... 73 I ... 74... 78... 78... 79... 80... 85... 86... 88... 90... 90... 90... 92... 93... 95... 95... 96...

More information

果树高产栽培技术(一).doc

果树高产栽培技术(一).doc ( ) ...1...1...3...10... 11...12...15...17...18...19...20...22...23...24...26...27...28...30...31...32 I ...36...38...40...41...42...44...45...47...48...49...50...51...52...53...55...58...59...60...61...62...66...67

More information

物质结构_二_.doc

物质结构_二_.doc I...1...3...6...8 --... 11 --...12 --...13 --...15 --...16 --...18 --...19 --...20 --...22 --...24 --...25 --...26 --...28 --...30 --...32 --...34 --...35 --...37 --...38...40 II...41...44...46...47...48...49...51...52...55...58

More information

第一節 研究動機與目的

第一節 研究動機與目的 中 國 文 化 大 學 中 國 文 學 研 究 所 碩 士 論 文 華 嚴 一 真 法 界 思 想 研 究 指 導 教 授 : 王 俊 彥 研 究 生 : 許 瑞 菁 中 華 民 國 98 年 12 月 自 序 在 佛 教 經 典 中 最 初 接 觸 的 是 佛 說 無 量 壽 經, 此 經 乃 大 方 廣 佛 華 嚴 經 的 精 華 版 綱 要 版 為 了 瞭 解 經 義, 深 知 宇 宙 運

More information

水力发电(九)

水力发电(九) ...1...17...20...26...27...30...33...34...36...37...44...47...49...58...77...79...90...96...107 I ...114...115...132...134...137...138...139...140...142...142...144...146...146...146...148...148...149...149...150...151...151...152

More information

中国古代文学家(八).doc

中国古代文学家(八).doc ...1...5...26...27...43...44...48...50...52...54...55...57...60...61...62...63...65...67...68 I ...69...70...71...75...77...78...82...84...95...98...99... 101... 103... 107... 108... 109... 110...111...

More information

景观植物(一)

景观植物(一) ...1...5...6...8... 11...13...15...18...21...23...26...29...43...51 5...53...58...62...63...65 I ...67...70...72...74...76...77...78...80...81...84...85...87...88...90...92...94...97... 109... 113... 115...

More information

Microsoft Word - 目录.doc

Microsoft Word - 目录.doc 教 学 管 理 文 件 汇 编 目 录 教 育 法 规 和 指 导 性 文 件 1. 中 华 人 民 共 和 国 高 等 教 育 法 1 2. 中 华 人 民 共 和 国 教 师 法 8 3. 普 通 高 等 学 校 学 生 管 理 规 定 12 4. 高 等 学 校 学 生 行 为 准 则 18 5. 中 华 人 民 共 和 国 学 位 条 例 19 6. 高 等 学 校 教 学 管 理 要 点

More information

园林植物卷(三).doc

园林植物卷(三).doc I II III IV 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 84k 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

More information

厨房小知识_一_

厨房小知识_一_ ... 1... 1... 2... 3... 3... 5... 6... 7... 7... 8... 10...11... 12... 13... 15... 17... 18... 19... 19... 20... 23... 24... 24 ... 26... 26... 29... 30... 31... 32... 33... 34... 37... 38... 40... 41...

More information

中南财经大学(七).doc

中南财经大学(七).doc ...1...16...20...22...31...32...34...37...38...40...44...46...54...58...59...60...61 I ...62...63...70...77...79...81...84...90...93...95...95...97... 100... 102... 104... 105... 106... 107... 109... 113

More information

1................................... 1................................... 2......................................... 3......................................... 4.............................. 5.........................................

More information

赵飞燕外传、四美艳史演义

赵飞燕外传、四美艳史演义 \ I... 1...1...8... 9... 9...9...11...13...16...19...22...25...28...33...36...39...42 II...46...48...51...55...58...62... 67...67...70...73...76...79...83...86...89...92...96...99... 102... 105... 108...

More information

厨房小知识(五)

厨房小知识(五) I...1...2...3...4...5...6 ()...7 ()...9...10...10... 11...12...13...14...15...15...16...18...19...20...20...21...21 II...24...27...28...29...29...31...32...33...34...35...36...38...38...39...40...40...41...42...42...43...44...44...47...48...50...50

More information

最新监察执法全书(十八).doc

最新监察执法全书(十八).doc .............. I ..................................................... II .......................................... III ... 2003......... IV ,

More information

园林植物卷(十二).doc

园林植物卷(十二).doc ... 1... 4... 8... 8... 9... 9...11... 13... 15... 20... 23... 30... 31... 36... 39... 40... 43 I ... 47... 52... 57... 60 1... 65 2... 71 (3)... 78... 81... 87... 89... 91... 94... 95... 97 ( )... 100...

More information

华东师范大学.doc

华东师范大学.doc ...1...3...4...5...6...7 ( )...9 ( )...10...16...19...21...22...23...27...27...31...31 I II...33...34 ( )...36 () ( )...44 () ( ) ( )...49 ( )...54...56...60 ( )...64...70...81...89 2004...95...97...99...

More information

國立中山大學學位論文典藏

國立中山大學學位論文典藏 I...1...1...4...4...6...6...13...24...29...44...44...45...46...47...48...50...50...56...60...64...68...73...73...85...92...99...105...113...121...127 ...127...131...135...142...145...148 II III IV 1 2

More information

乳业竞争_一_

乳业竞争_一_ ...1...7...10... 11...14...17...18...19...21...23...25...26...28 50...30...31 48...31 3000...34...35...37 I ...40...44...45...48...50...51...55...56...58...58...60 ()...62 ()...66...71...72...72...73...76...77

More information

最新执法工作手册(十).doc

最新执法工作手册(十).doc ......................................... I ......... 2003....................................... II III............................................................ IV..............................................................

More information

untitled

untitled ...1 1...1...3...5...6...8...8...15...16...19 21...21...24...25...26...29...30...33...36...38...41...41 ( )...41...42...48...48...57...57...63...67...67...67...67...71...74 I ...76...76...79...81...82...82...83...83...83...84...84...85...85...85

More information

最新执法工作手册(十六)

最新执法工作手册(十六) ............................................. I ................................... II ........................... 2001......... III IV......................................... ........................

More information

中国政法大学(六).doc

中国政法大学(六).doc ...1...6...8 2004... 11...15 2003...16...20...29...32...34...38...39...42...43...44...48 I ...53...58...61...63...71...75...77...79...83...91...94...95...98... 100... 102... 102... 105... 106... 107...

More information

胎儿健康成长.doc

胎儿健康成长.doc ...1...2...5...6...7...8...9... 11...13...15...16...17...19...22...22...23...24...25 I II...26...27...30...31...32...33...36...38...38...39...40...43...44...46...46...47...48...50...52...54...55...59 ...62

More information