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

Size: px
Start display at page:

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

Transcription

1 C/C++

2 Table of contents C C

3

4 i // shoe1.c: # include <stdio.h> # define ADJUST # define SCALE int main ( void ) { double shoe, foot ; shoe = 9. 0; foot = SCALE * shoe + ADJUST ; printf (" Shoe size ( men \ s) foot length \n"); printf (" %10.1 f %15.2 f inches \n", shoe, foot ); return 0; } 2

5 Shoe size ( men s) foot length inches 3

6 i // shoe2.c: # include <stdio.h> # define ADJUST # define SCALE int main ( void ) { double shoe, foot ; printf (" Shoe size ( men \ s) foot length \n"); shoe = 8. 0; while ( shoe < 18. 5) { foot = SCALE * shoe + ADJUST ; printf (" %10.1 f %15.2 f inches \n", shoe, foot ) ; shoe = shoe + 1; 4

7 ii } } printf ("If shoes fit, wear it.\n"); return 0; 5

8 Shoe size ( men s) foot length inches inches inches inches inches inches inches If shoes fit, wear it. 6

9 while while ( condition ) statement while ( condition ) { statements } while ( condition ){ statements } 7

10 while shoe = 10.0; no go to next statement shoe < 18.5 yes foot = SCALE * shoe + ADJUST; printf("..."); shoe = shoe + 1; 8

11

12

13 int n; n = 2016; 9

14 int n; n = 2016; C = (assignment operator) 2016 n n

15 i = i + 1; 10

16 i = i + 1; i 22 i = i 23 10

17 2016 = n; 11

18

19 // AssignOpThree.c: # include <stdio.h> # include < string.h> int main ( void ) { } int a, b, c; a = b = c = 10; printf ("a = %d, b = %d, c = %d\n", a, b, c); return 0; 13

20 // AssignOpThree.c: # include <stdio.h> # include < string.h> int main ( void ) { } int a, b, c; a = b = c = 10; printf ("a = %d, b = %d, c = %d\n", a, b, c); return 0; a = 10, b = 10, c = 10 13

21 // AssignOpThree.c: # include <stdio.h> # include < string.h> int main ( void ) { } int a, b, c; a = b = c = 10; printf ("a = %d, b = %d, c = %d\n", a, b, c); return 0; a = 10, b = 10, c = c c b b a 13

22

23 (addition operator) printf ("%d", 4+20) ; c = a + b; 14

24 (subtraction operator) b = ;

25 + - a = -1; b = -a; - C99 + a = +1; 16

26

27 mile = 1.6 * km; C 17

28 // square.c: # include <stdio.h> int main ( void ) { int num =1; while ( num < 10) { printf ("%4d^2 = %6d\n", num, num * num ); num = num + 1; } return 0; } 18

29 1^2 = 1 2^2 = 4 3^2 = 9 4^2 = 16 5^2 = 25 6^2 = 36 7^2 = 49 8^2 = 64 9^2 = 81 19

30

31 // divide.c: # include <stdio.h> int main ( void ) { printf (" 3/4 = %d\n", 3/4) ; printf (" 6/3 = %d\n", 6/3) ; printf (" 7/4 = %d\n", 7/4) ; printf (" 7./4. = %.2 f\n", 7./4.) ; printf (" 7./4 = %.2 f\n", 7./4) ; return 0; } 20

32 3/4 = 0 6/3 = 2 7/4 = 1 7./4. = /4 =

33 C 22

34

35 ( ) +, -( ) *, / +, -( ) = 23

36 y = 6 * * 20; 24

37 y = 6 * * 20; C 24

38 y = 12 / 3 * 2; 25

39 y = 12 / 3 * 2; / * 3 12/3 25

40 // rules.c: # include <stdio.h> int main ( void ) { int a, b; b = a = -(2 + 5) * 6 + (4 + 3 * (2 + 3)); printf ("b = %d\n", b); return 0; } 26

41 // rules.c: # include <stdio.h> int main ( void ) { int a, b; b = a = -(2 + 5) * 6 + (4 + 3 * (2 + 3)); printf ("b = %d\n", b); return 0; } b =

42 // rules.c: # include <stdio.h> int main ( void ) { int a, b; b = a = -(2 + 5) * 6 + (4 + 3 * (2 + 3)); printf ("b = %d\n", b); return 0; } b = b = a = -(2 + 5) * 6 + (4 + 3 * (2 + 3)); 2. b = a = -7 * 6 + (4 + 3 * (2 + 3)); 3. b = a = -7 * 6 + (4 + 3 * 5); 4. b = a = -7 * 6 + (4 + 15) ; 5. b = a = -7 * ; 6. b = a = ; 7. b = a = -23; 8. b = -23; 26

43

44 %

45 % (modulus operator) 27

46 % // modulus.c: # include <stdio.h> int main ( void ) { printf ("13 %% 5 = %d\n", 13 % 5); return 0; } 13 % 5 = 3 28

47 % i // min_sec.c: # include <stdio.h> # define SEC_ PER_ MIN 60 int main ( void ) { int sec, min, left ; printf (" Convert secs to mins and secs!\n"); printf (" Enter the number of secs ( <=0 to quit ) :\n"); scanf ("%d", & sec ); while (sec >0) { min = sec / SEC_ PER_ MIN ; left = sec % SEC_ PER_ MIN ; 29

48 % ii } printf ("%d secs is %d mins, %d secs.\n", sec, min, left ); printf (" Enter next value ( <=0 to quit ):\n"); scanf ("%d", & sec ); } printf (" Done!\n"); return 0; 30

49 % Convert secs to mins and secs! Enter the number of secs ( <=0 to quit ): secs is 2 mins, 34 secs. Enter next value ( <=0 to quit ): secs is 9 mins, 27 secs. Enter next value ( <=0 to quit ): 0 Done! 31

50 i // mod_negative.c: # include <stdio.h> int main ( void ) { printf (" 11 / 5 = %2d, 11 % 5 = %2d\n", 11 / 5, 11 % 5); printf (" 11 / -5 = %2d, 11 % -5 = %2d\n", 11 / ( -5), 11 % ( -5)); printf (" -11 / -5 = %2d, -11 % -5 = %2d\n", ( -11) / ( -5), ( -11) % ( -5)); printf (" -11 / 5 = %2d, -11 % 5 = %2d\n", ( -11) / 5, ( -11) % 5); return 0; } 32

51 11 / 5 = 2, 11 % 5 = 1 11 / -5 = -2, 11 % -5 = 1-11 / -5 = 2, -11 % -5 = / 5 = -2, -11 % 5 = -1 33

52 11 / 5 = 2, 11 % 5 = 1 11 / -5 = -2, 11 % -5 = 1-11 / -5 = 2, -11 % -5 = / 5 = -2, -11 % 5 = -1 C99 33

53

54 ++ (increment operator) 1 ++i; i ++; 1 34

55 # include <stdio.h> int main ( void ) { int i = 0, j = 0; while (i < 5) { i ++; ++j; printf ("i = %d, j = %d\n", i, j); } return 0; } i = 1, j = 1 i = 2, j = 2 i = 3, j = 3 i = 4, j = 4 i = 5, j = 5 35

56 ++i; j ++; i = i + 1; j = j + 1; 36

57 ++i; j ++; i = i + 1; j = j + 1; 36

58 shoe = 8. 0; while ( shoe < 18. 5) { foot = SCALE * size + ADJUST ; printf (" %10.1 f %20.2 f inches \n", shoe, foot ); ++ shoe ; } 37

59 shoe = 7. 0; while (++ shoe < 18. 5) { foot = SCALE * size + ADJUST ; printf (" %10.1 f %20.2 f inches \n", shoe, foot ); } 38

60 // post_pre.c # include <stdio.h> int main ( void ) { int a = 1, b = 1; int aplus, bplus ; aplus = a ++; bplus = ++b; printf ("a = %d, aplus = %d\n", a, aplus ); printf ("b = %d, bplus = %d\n", b, bplus ); return 0; } 39

61 // post_pre.c # include <stdio.h> int main ( void ) { int a = 1, b = 1; int aplus, bplus ; aplus = a ++; bplus = ++b; printf ("a = %d, aplus = %d\n", a, aplus ); printf ("b = %d, bplus = %d\n", b, bplus ); return 0; } a = 2, aplus = 1 b = 2, bplus = 2 39

62 shoe = 7. 0; while (++ shoe < 18. 5) { foot = SCALE * size + ADJUST ; printf (" %10.1 f %20.2 f inches \n", shoe, foot ); } shoe = 7. 0; while ( shoe ++ < 18. 5) { foot = SCALE * size + ADJUST ; printf (" %10.1 f %20.2 f inches \n", shoe, foot ); } 40

63 b = ++i; ++i; b = i; 41

64 i = 5; b = ++i; i = 5; b = i ++; b i 42

65 -- count ; // count - -; // 43

66 x * y++ x * (y ++) (x * y)++ // invalid 44

67 45

68 // inc.c: # include <stdio.h> int main ( void ) { int y = 2; int n = 3; int nextnum ; nextnum = (y + n ++) *6; printf ("n = %d, nextnum = %d\n", n, nextnum ); return 0; } 46

69 // inc.c: # include <stdio.h> int main ( void ) { int y = 2; int n = 3; int nextnum ; nextnum = (y + n ++) *6; printf ("n = %d, nextnum = %d\n", n, nextnum ); return 0; } n = 4, nextnum = 30 46

70 n++ n n ++ n n n 47

71 // inc1.c: # include <stdio.h> int main ( void ) { int y = 2; int n = 3; int nextnum ; nextnum = (y + ++n) *6; printf ("n = %d, nextnum = %d\n", n, nextnum ); return 0; } 48

72 // inc1.c: # include <stdio.h> int main ( void ) { int y = 2; int n = 3; int nextnum ; nextnum = (y + ++n) *6; printf ("n = %d, nextnum = %d\n", n, nextnum ); return 0; } n = 4, nextnum = 36 48

73 n++ n ++n n 49

74 Don t Be Too Clever // inc2.c: # include <stdio.h> int main ( void ) { int n = 5; printf ("n = %d, n^2 = %d\n", n, n*n ++) ; return 0; } 50

75 Don t Be Too Clever // inc2.c: # include <stdio.h> int main ( void ) { int n = 5; printf ("n = %d, n^2 = %d\n", n, n*n ++) ; return 0; } maybe : n = 5, n ^2 = 25 maybe : n = 6, n ^2 = 25 maybe : n = 6, n ^2 = 30 50

76 Don t Be Too Clever // inc2.c: # include <stdio.h> int main ( void ) { int n = 5; printf ("n = %d, n^2 = %d\n", n, n*n ++) ; return 0; } maybe : n = 5, n ^2 = 25 maybe : n = 6, n ^2 = 25 maybe : n = 6, n ^2 = 30 C 50

77 Don t Be Too Clever // inc3.c: # include <stdio.h> int main ( void ) { int n = 5; int m; m = n/2 + 5*(1 + n ++) ; printf ("n = %d, m = %d\n", n, m); return 0; } maybe : n = 6, m = 32 maybe : n = 6, m = 33 51

78 Don t Be Too Clever // inc3.c: # include <stdio.h> int main ( void ) { int n = 5; int m; m = n/2 + 5*(1 + n ++) ; printf ("n = %d, m = %d\n", n, m); return 0; } maybe : n = 6, m = 32 maybe : n = 6, m = 33 51

79 Don t Be Too Clever // inc4.c: # include <stdio.h> int main ( void ) { int n = 3; int m; m = n++ + n ++; printf ("n = %d, m = %d\n", n, m); return 0; } 52

80 Don t Be Too Clever // inc4.c: # include <stdio.h> int main ( void ) { int n = 3; int m; m = n++ + n ++; printf ("n = %d, m = %d\n", n, m); return 0; } maybe : n = 5, m = 7 maybe : n = 5, m = 6 52

81 Don t Be Too Clever n 5 m m n n m 6 n 5 m n n n n m 7 n 5 53

82 54

83 C C++

84 C C++ C C++, 1. 55

85 C C++ C C++, 1. int i = (5, 10) ; // i = 10 int j = (f1 (), f2 ()); // j = f2 () 55

86 C C++ C C++, 1. int i = (5, 10) ; // i = 10 int j = (f1 (), f2 ()); // j = f2 () 2. enum 55

87 C C++ C C++, 1. int i = (5, 10) ; // i = 10 int j = (f1 (), f2 ()); // j = f2 () 2. enum int a = 1, b = 2; void fun (x, y); 55

88 C C++ void fun (f1 (), f2 ()); f1() f2() 56

89 C C++ // comma1.c: # include < stdio.h> int main () { int x = 10; int y = 15; printf ("%d\n", (x, y)); return 0; } 57

90 C C++ // comma1.c: # include < stdio.h> int main () { int x = 10; int y = 15; printf ("%d\n", (x, y)); return 0; } 15 57

91 C C++ // comma2.c: # include < stdio.h> int main () { int x = 10; int y = (x++, ++x); printf ("%d\n", y); return 0; } 58

92 C C++ // comma2.c: # include < stdio.h> int main () { int x = 10; int y = (x++, ++x); printf ("%d\n", y); return 0; } 12 58

93 C C++ // comma3.c: # include < stdio.h> int main () { int x = 10, y; y = (x++, printf ("x = %d\n", x), ++x, printf ("x = %d\n", x), x ++) ; printf ("y = %d\n", y); printf ("x = %d\n", x); return 0; } 59

94 C C++ // comma3.c: # include < stdio.h> int main () { int x = 10, y; y = (x++, printf ("x = %d\n", x), ++x, printf ("x = %d\n", x), x ++) ; printf ("y = %d\n", y); printf ("x = %d\n", x); return 0; } x = 11 x = 12 y = 12 x = 13 59

95

96

97 1. == true false 5 == 5 true 2.!= true false 5!= 5 false 60

98 3. > true false 6 > 5 true 4. < true false 6 < 5 false 61

99 5. >= true false 5 >= 5 true 6. <= true false 5 <= 5 true 62

100 i 1 // C program to demonstrate working of relational operators 2 # include <stdio.h> 3 int main () 4 { 5 int a=10, b =4; 6 // relational operators 7 // greater than example 8 if (a > b) 9 printf ("a is greater than b\n"); 10 else 11 printf ("a is less than or equal to b\n"); 12 // greater than equal to 13 if (a >= b) 63

101 ii 14 printf ("a is greater than or equal to b\n"); 15 else 16 printf ("a is lesser than b\n"); 17 // less than example 18 if (a < b) 19 printf ("a is less than b\n"); 20 else 21 printf ("a is greater than or equal to b\n"); 22 // lesser than equal to 23 if (a <= b) 24 printf ("a is lesser than or equal to b\n"); 25 else 26 printf ("a is greater than b\n"); 27 // equal to 28 if (a == b) 64

102 iii 29 printf ("a is equal to b\n"); 30 else 31 printf ("a and b are not equal \n"); 32 // not equal to 33 if (a!= b) 34 printf ("a is not equal to b\n"); 35 else 36 printf ("a is equal b\n"); 37 return 0; 38 } 65

103 Output : a is greater than b a is greater than or equal to b a is greater than or equal to b a is greater than b a and b are not equal a is not equal to b 66

104

105 1. && true false a b true ( ) a && b true 2. true false a b true ( ) a b true a b true a b true 3.! true false a false a true 67

106 i 1 // C program to demonstrate working of logical operators 2 # include <stdio.h> 3 int main () 4 { 5 int a = 10, b = 4, c = 10, d = 20; 6 // logical operators 7 // logical AND example 8 if (a>b && c==d) 9 printf (" a is greater than b AND c is equal to d\n"); 10 else 11 printf (" AND condition not satisfied \n"); 12 // logical OR example 68

107 ii 13 if (a>b c==d) 14 printf (" a is greater than b OR c is equal to d\n"); 15 else 16 printf (" Neither a is greater than b nor c is equal to d\n"); 17 // logical NOT example 18 if (!a) 19 printf ("a is zero \n"); 20 else 21 printf ("a is not zero "); 22 return 0; 23 } 69

108 AND condition not satisfied a is greater than b OR c is equal to d a is not zero 70

109

110 i false hello 1 # include <stdio.h> 2 # include < stdbool.h> 3 int main () 4 { 5 int a=10, b =4; 6 bool res = ((a == b) && printf (" Hello ")); 7 return 0; 8 } 71

111 hello 1 # include <stdio.h> 2 # include < stdbool.h> 3 int main () 4 { 5 int a=10, b =4; 6 bool res = ((a!= b) && printf (" Hello ")); 7 return 0; 8 } 72

112 true hello 1 # include <stdio.h> 2 # include < stdbool.h> 3 int main () 4 { 5 int a=10, b =4; 6 bool res = ((a!= b) printf (" Hello ")); 7 return 0; 8 } 73

113 hello 1 # include <stdio.h> 2 # include < stdbool.h> 3 int main () 4 { 5 int a=10, b =4; 6 bool res = ((a == b) printf (" Hello ")); 7 return 0; 8 } 74

114

115 a * (b + c/d) / 20 q = 5 * 2 x = ++ q % 3 q > 3 75

116 (subexpression) 76

117 c = > (c = 3 + 8) 17 C 77

118 (statement) (program) C 78

119 i = 4 i = 4; 79

120 C C 4; 3 + 4; 80

121 x = 25; ++x; y = sqrt (x); 81

122 x = 6 + (y = 5); y = 5 82

123 i // addemup.c: # include <stdio.h> int main ( void ) { int count, sum ; count = 0; sum = 0; while ( count ++ < 20) sum = sum + count ; printf (" sum = %d\n", sum ); return 0; } 83

124 (side effect) i = 50; i 50 84

125 (side effect) i = 50; i 50 Why? 84

126 (side effect) i = 50; i 50 Why? C C 4+6 C 10 C i = 50 C 50 i 50 84

127 (sequence point) 85

128 (sequence point) (full expression) while 86

129 while (i++ < 10) printf ("%d\n", i); i++ < 10 while C printf i 10 87

130 y = (4 + x ++) + (6 + x ++) ; 4 + x++ C x C x C x 88

131 (compound statement) (block) 89

132 index = 0; while ( index ++ < 10) sam = 10 * index + 2; printf (" sam = %d\n", sam ); index = 0; while ( index ++ < 10) { sam = 10 * index + 2; printf (" sam = %d\n", sam ); } 90

133

134 * (20 * 30) * / 100 / 10 * 10 (100 / 10)* 10 91

135 1 92

136 i // Associativity is not used in the below program. Output // is compiler dependent. int x = 0; int f1 () { x = 5; return x; } int f2 () { x = 10; return x; } 93

137 ii int main () { int p = f1 () + f2 (); printf ("%d ", x); return 0; } 94

138 + f1() f2() 95

139

140

141 4 # include < stdio.h> int main () { int a; a = 1, 2, 3; // Evaluated as (a = 1), 2, 3 printf ("%d", a); return 0; } 98

142 5 c > b > a C (c > b)> a Python a < b and b < c # include <stdio.h> int main () { int a = 10, b = 20, c = 30; if (c > b > a) printf (" TRUE "); else printf (" FALSE "); return 0; } 99

143 1: () ( ) [] ( ). -> / 100

144 2: / + - /! ~ / (type) * & sizeof 101

145 3: * / % / / + - / << >> / < <= / > >= / ==!= / 102

146 4: & ^ &&?: 103

147 5: = += -= / *= /= / %= &= / ^= = / <<= >>= /, ( ) 104

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++ - 字符输入输出和字符确认

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. 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++语言 - 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 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

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

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

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 WWW PHP 2003 1 Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 Comments PHP Shell Style: # C++ Style: // C Style: /* */ $value = $p * exp($r * $t); # $value

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

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

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

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

新版 明解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 1 # include <stdio.h> 2 int main ( void ) { 4 int cases, i; 5 long long a, b; 6 scanf ("%d", & cases ); 7 for (i = 0;i < cases ;i ++) 8 { 9

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

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

( 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 不 料 料 例 : ( 料 ) 串 度 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 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言語 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

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

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

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

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

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

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

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/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

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

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

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

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

390 1975 23 664 25 117 1986 Km % % % I 3.61 23.1 387.8 15.4 35.8 A 2.21 14.1 300.1 11.9 33.44 B 1.40 9.0 87.7 3.5 2.36 II 6.11

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

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

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

More information

!"# $%& %!"# $%& %!"#$%& %! ( )***%% ) $)! +**+),,* -)+.* )( ) +, +*.*)+..**! )$,*)+$))$!"!#

!# $%& %!# $%& %!#$%& %! ( )***%% ) $)! +**+),,* -)+.* )( ) +, +*.*)+..**! )$,*)+$))$!!# !"#$%& % ( % )& (% ( % (( )( !"# $%& %!"# $%& %!"#$%& %! ( )***%% ) $)! +**+),,* -)+.* )( ) +, +*.*)+..**! )$,*)+$))$!"!# !"#$%& %!! "! # " $ # % & & ( ) *!+ !"#$%& % ( (*( (*+ "#$% $%%"# (*, (*% + +*(

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

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 - ch04三校.doc

Microsoft Word - ch04三校.doc 4-1 4-1-1 (Object) (State) (Behavior) ( ) ( ) ( method) ( properties) ( functions) 4-2 4-1-2 (Message) ( ) ( ) ( ) A B A ( ) ( ) ( YourCar) ( changegear) ( lowergear) 4-1-3 (Class) (Blueprint) 4-3 changegear

More information

FY.DOC

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

More information

育儿知识100问(二)

育儿知识100问(二) 100 9998.00 (1CD, ) I...1...2...5...6 B...9...10... 11...13...15 1...16...17...21...23...25...27...30...33...34...36...38...39...40...44...47...48 II...49 5...50...50...51...52...53...54 2...55...56...60...64...65...67...69...76...76...79...81...83...86...90...99

More information

1050502公務員懲戒法實務及新制

1050502公務員懲戒法實務及新制 公 務 員 懲 戒 實 務 及 新 制 智 慧 財 產 法 院 法 官 林 欣 蓉 修 法 沿 革 74 年 5 月 3 日 修 正 89 年 10 月 19 日 函 送 立 法 院 審 議 91 年 3 月 15 日 函 送 立 法 院 審 議 91 年 8 月 29 日 函 送 立 法 院 審 議 94 年 11 月 23 日 函 送 立 法 院 審 議 99 年 2 月 9 日 函 送 立 法

More information

大小通吃-糖尿病

大小通吃-糖尿病 壹 前 言 貳 正 文 ㆒ 認 識 糖 尿 病 1. 病 因 2. 症 狀 3. 高 危 險 群 4. 類 型 5. 併 發 症 ㆓ 糖 尿 病 的 治 療 1. 飲 食 方 面 2. 運 動 方 面 3. 藥 物 方 面 4. 糖 尿 病 的 良 好 控 制 ㆔ 糖 尿 病 的 併 發 症 1. 急 性 併 發 症 2. 慢 性 併 發 症 ㆕ 糖 尿 病 的 問 題 Q1 是 否 禁 菸 禁 酒?

More information

1065 # [1994]21 [1995]1 (2014)19 ... 1... 3... 4... 6... 7... 10... 12... 17... 21... 37... 40... 50... 56... 57... 59... 62... 71... 72 ... 83... 86... 87... 89... 93... 94... 95... 96 [1992]45 009079

More information

98825 (Project Sunshine) Chi_TC_.indb

98825 (Project Sunshine) Chi_TC_.indb 60 19501992 2005 2008 12 15 97.5%0.6%0.6%0.6%0.6% 2008 12 16 2008 2010 6 2011 7 160 2012 1 2013 5 2014 6 3 5 4 1 E 2016 13 1 2016 161 300,000,000 2010 36,000,000 200,000,000 536,000,000 2011 64,320,000

More information

(Microsoft Word - outline for Genesis 9\243\2721\243\25529.doc)

(Microsoft Word - outline for Genesis 9\243\2721\243\25529.doc) 創 世 紀 9:1-29; 神 的 憐 憫 及 與 挪 亞 立 約 韋 江 傳 道 暖 身 問 題 : 當 別 人 無 意 識 地 踩 到 你 的 腳, 確 一 句 話 不 說 就 走 開 的 時 候, 你 會 怎 麼 樣 做? 注 意 : 大 綱 中 問 題 較 多, 但 顯 然 不 是 所 有 的 都 需 要 討 論 到, 比 較 多 的 是 供 你 們 參 考 所 以, 每 一 個 帶 領 者

More information

穨Shuk-final.PDF

穨Shuk-final.PDF : : ( ( ( ( ( D : 20 25 -, -, - :, D ( ( ((,! ( ( ( 15 20 ( - - - ( ( ( 1985 33 ( ( ( 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 - - - - - ( ( ( - --- ( - ( - - - - ( ( ( ( ( ( ( ( 1985 35 1. ( ( ( ( ( 2.

More information

2

2 1 2 3 4 4 5 5 6 6 I 17 27 31 63 II 79 87 91 99 103 107 113 119 III 129 135 137 141 145 153 163 165 169 175 177 181 7 187 193 195 199 201 7 8 9 9 10 11 11 12 12 I 13 13 14 14 I.... 17... 27 15... 31...

More information

招行2002年半年度报告全文.PDF

招行2002年半年度报告全文.PDF 2 2 12 13 13 16 19 19 1 2 7088 518040 14,444 2,744-370 -1,955-864 14,889 3 4 8% 16.38 14.01 10.26 11.39 11.93 11.61 4% 10.73 9.69 4.23 10.89 11.11 11.30 15% 6.43 7.59 8.15 10.64 9.28 11.44 75% 55.67 57.74

More information

Microsoft Word - 75413980_4

Microsoft Word - 75413980_4 中 国 资 产 管 理 业 翘 首 等 待 修 订 后 的 证 券 投 资 基 金 法 及 配 套 法 规 的 施 行 2012 年 12 月 28 日, 业 内 期 盼 已 久 的 中 华 人 民 共 和 国 证 券 投 资 基 金 法 ( 新 基 金 法 ) 修 订 通 过, 自 2013 年 6 月 1 日 起 施 行 为 了 支 持 新 基 金 法 的 实 施, 有 关 监 管 部 门, 主

More information

郑州大学(下).doc

郑州大学(下).doc ...1...10 ( )...12...14...18...20...24...26...30...33...37...39...42...45...48...52...53 I ...57...63...65...74...82...84...85...87...91...95...97... 101... 103... 106... 109... 115... 124... 126... 128

More information

厨房小知识(六)

厨房小知识(六) ...1...1...2...2...4...6...7...8...9...10...13...14...17...18...20...20...21...23...24...24...26...27...28 I II...31...32...32...35...36...39...40...41...41...42...43...44...47?...49...50...52...53...54...54...60...67...68...69

More information

广 东 纺 织 职 业 技 术 学 院 发 展 党 员 公 示 制 实 施 办 法...189 关 于 推 荐 优 秀 团 员 作 为 党 的 发 展 对 象 工 作 的 意 见...192 后 勤 管 理 工 作 广 东 纺 织 职 业 技 术 学 院 新 引 进 教 职 工 周 转 房 管 理

广 东 纺 织 职 业 技 术 学 院 发 展 党 员 公 示 制 实 施 办 法...189 关 于 推 荐 优 秀 团 员 作 为 党 的 发 展 对 象 工 作 的 意 见...192 后 勤 管 理 工 作 广 东 纺 织 职 业 技 术 学 院 新 引 进 教 职 工 周 转 房 管 理 目 党 政 工 作 广 东 纺 织 职 业 技 术 学 院 党 委 理 论 中 心 组 学 习 制 度...1 广 东 纺 织 职 业 技 术 学 院 教 职 工 政 治 理 论 学 习 制 度...4 广 东 纺 织 职 业 技 术 学 院 党 风 廉 政 建 设 责 任 制 实 施 办 法 ( 试 行 )...6 广 东 纺 织 职 业 技 术 学 院 党 风 廉 政 建 设 暂 行 规 定...18

More information

2005 2005 12

2005  2005 12 2005 2005 http://www.nsfc.gov.cn 2005 12 2005...1 1-1 2005...1 1-2 2005...2 1-3 2005...5 1-4 2005...6 1-5 2005...7 1-6 2005...8 1-7 2005...9 1-8 2005...10 1-9 2005 200...11 1-10 2005...21 1-11 2005...61

More information

游戏攻略大全(五十).doc

游戏攻略大全(五十).doc I...1...2...18...32...37...39...40...40...41...41...41...42...42...42...43...44...44...44...45...45...45...46 ...46...46...47...47...47...47...48...48...48...49...51...72...80...82...85...86...91...94...97

More information

金融英语证书考试大纲

金融英语证书考试大纲 金 融 英 语 证 书 考 试 大 纲 第 一 部 分 考 试 说 明 一 考 试 目 的 金 融 英 语 证 书 考 试 是 国 家 级 行 业 性 专 业 外 语 水 平 考 试, 旨 在 通 过 统 一 的 标 准 化 考 试 程 序 和 测 试 标 准, 为 中 国 金 融 业 提 供 金 融 英 语 水 平 行 业 参 考 标 准, 测 试 并 认 定 应 试 人 员 的 金 融 英 语

More information

I...1...2...3...4...6...7...8...10... 11...12...13...14...16...17...18...20...21...22...23...25...26...27...28...30 II...31...33...34...35...37...38...39...41...43...44...45...47...49...50...52...54...55...56...57...59...60...61...62...63...64...65

More information

健康知识(二)

健康知识(二) I...1...6...7...8...10...12...14...15...17...19...22...26...28...29...30...31...32...34...36...37...38...39...40 II...41...42...43...46 7...47...48...49...53...55...56...57...58...60...66...67...68...69...69...70...73...73...74...75...78...79...79

More information

中南财经大学(二).doc

中南财经大学(二).doc 2004...1...3 2004...5...9 2004...10 2004...13...16...18...19...23...35...39...42...44...46...50 I ...53...54 ( )...57...58...62... 121... 124... 149 ( )... 151... 152... 154... 157... 158... 159... 163...

More information

广西大学(一).doc

广西大学(一).doc .....1... 11...14...15...16...17...19...19...22 ( )...30 ( )...32...34...39...44 ( )...63...64...67...69 I ...75...77...79...81...87 ( )...88...92...93...95...98... 100... 104... 114... 116... 124 ( )...

More information

根据学校教学工作安排,2011年9月19日正式开课,也是我校迁址蓬莱的第一学期开学

根据学校教学工作安排,2011年9月19日正式开课,也是我校迁址蓬莱的第一学期开学 济 南 大 学 泉 城 学 院 2014 届 毕 业 生 就 业 质 量 年 度 报 告 前 言 济 南 大 学 泉 城 学 院 是 国 家 教 育 部 和 山 东 省 人 民 政 府 正 式 批 准 成 立, 实 施 本 科 层 次 学 历 教 育 的 综 合 性 高 等 院 校 自 2005 年 建 校 以 来, 学 院 依 托 济 南 大 学 雄 厚 的 办 学 实 力, 坚 持 以 学 生

More information

山东大学(一).doc

山东大学(一).doc ...1...8...23...27...30 ( )...33...36...40...44...46...52 ( )...53...54...54 I ...55...56...58...59...60 ( )...63...75...88...92...99 ( )... 110... 118... 138... 142... 148 ( )... 152 2004 2006... 156

More information

主 编 : 杨 林 副 主 编 : 张 新 民 邹 兰 曹 纯 纯 周 秋 婷 李 雅 清 黄 囡 囡 评 审 顾 问 : 杨 林 张 新 民 评 审 : 张 新 民 邹 兰 曹 纯 纯 周 秋 婷 李 雅 清 黄 囡 囡 李 忆 萍 徐 如 雪 文 字 编 辑 : 曹 纯 纯 邹 兰 李 雅 清

主 编 : 杨 林 副 主 编 : 张 新 民 邹 兰 曹 纯 纯 周 秋 婷 李 雅 清 黄 囡 囡 评 审 顾 问 : 杨 林 张 新 民 评 审 : 张 新 民 邹 兰 曹 纯 纯 周 秋 婷 李 雅 清 黄 囡 囡 李 忆 萍 徐 如 雪 文 字 编 辑 : 曹 纯 纯 邹 兰 李 雅 清 主 编 : 杨 林 副 主 编 : 张 新 民 邹 兰 曹 纯 纯 周 秋 婷 李 雅 清 黄 囡 囡 评 审 顾 问 : 杨 林 张 新 民 评 审 : 张 新 民 邹 兰 曹 纯 纯 周 秋 婷 李 雅 清 黄 囡 囡 李 忆 萍 徐 如 雪 文 字 编 辑 : 曹 纯 纯 邹 兰 李 雅 清 周 秋 婷 李 忆 萍 徐 如 雪 何 雯 技 术 编 辑 : 李 雅 清 曹 纯 纯 薛 莞 陈 敏

More information

最新文物管理执法全书(十四).doc

最新文物管理执法全书(十四).doc I...1...3...5...8...12...15...19...23...25...28...30...34...37...39...43...47...50...52...55...59...60...63...67...70 ...75...79...82...83...85...90...92...95...99... 103... 106... 113... 117... 119...

More information

园林常识(二).doc

园林常识(二).doc I...1...1...1...2...32...33...36...38...41...42...43...43...43...44...45...45...46...48...49...56...62...65 ...68...77...84...98... 103 :... 104... 105 :... 107 :... 109... 110...111... 126... 127... 130

More information

前 言 二 一 六 年 四 月 四 日, 兒 童 節, 誕 生 了 一 件 美 事 : 中 國 作 家 曹 文 軒 在 意 大 利 博 洛 尼 亞 國 際 童 書 展 榮 獲 國 際 安 徒 生 文 學 獎, 是 該 獎 創 設 六 十 年 來, 第 一 位 摘 桂 的 中 國 作 家, 意 義 重

前 言 二 一 六 年 四 月 四 日, 兒 童 節, 誕 生 了 一 件 美 事 : 中 國 作 家 曹 文 軒 在 意 大 利 博 洛 尼 亞 國 際 童 書 展 榮 獲 國 際 安 徒 生 文 學 獎, 是 該 獎 創 設 六 十 年 來, 第 一 位 摘 桂 的 中 國 作 家, 意 義 重 目 錄 前 言 i 童 年 1 關 於 肥 肉 的 歷 史 記 憶 ( 節 錄 ) 7 疲 民 15 水 邊 的 文 字 屋 23 海 邊 的 屋 29 紅 葫 蘆 37 追 隨 永 恆 ( 草 房 子 代 跋 一 ) 53 因 水 而 生 草 房 子 寫 作 札 記 59 書 香 人 家 73 朗 讀 的 意 義 79 知 無 涯, 書 為 馬 85 讀 是 誰 91 給 孩 子 講 課 文 學

More information

湖 南 科 技 大 学

湖 南 科 技 大 学 I 目 录 第 一 章 2015 年 度 培 训 概 况 1 1 基 本 情 况 1 1.1 项 目 申 报 情 况 1 1.2 项 目 实 施 情 况 3 1.3 学 员 来 源 情 况 5 1.4 项 目 经 费 情 况 7 2 组 织 管 理 9 2.1 学 校 设 立 培 训 项 目 实 施 工 作 领 导 小 组 9 2.2 施 训 学 院 设 立 项 目 实 施 办 公 室 9 3 培

More information

上海外国语大学(二).doc

上海外国语大学(二).doc ...1...3...4...9...10 ( )... 11...12...16...31...33...34...50...56...58...60...62 I II...63...65...68...74...75...75...76...76...78...87...92...96 ( )...96 ( )...97 ( )...98 ( )...99... 100 ( )... 101

More information

2009 陳 敦 德

2009 陳 敦 德 前 言 : 發 掘 香 港 歷 史 獨 有 的 寶 藏 2010 2009 陳 敦 德 目 錄 前 言 發 掘 香 港 歷 史 獨 有 的 寶 藏 / i 第 一 章 香 港 設 立 八 路 軍 辦 事 處, 青 年 廖 承 志 為 主 任 /1 一 毛 澤 東 認 為, 八 路 軍 駐 香 港 辦 事 處, 是 個 獨 特 的 辦 事 處 /10 二 毛 澤 東 親 自 點 將, 為 小 廖 舉

More information

切 实 加 强 职 业 院 校 学 生 实 践 能 力 和 职 业 技 能 的 培 养 周 济 在 职 业 教 育 实 训 基 地 建 设 工 作 会 议 上 的 讲 话 深 化 教 育 教 学 改 革 推 进 体 制 机 制 创 新 全 面 提 高 高 等 职 业 教 育 质 量 在

切 实 加 强 职 业 院 校 学 生 实 践 能 力 和 职 业 技 能 的 培 养 周 济 在 职 业 教 育 实 训 基 地 建 设 工 作 会 议 上 的 讲 话 深 化 教 育 教 学 改 革 推 进 体 制 机 制 创 新 全 面 提 高 高 等 职 业 教 育 质 量 在 目 录 中 华 人 民 共 和 国 职 业 教 育 法... 1 国 务 院 关 于 大 力 推 进 职 业 教 育 改 革 与 发 展 的 决 定... 7 国 务 院 关 于 大 力 发 展 职 业 教 育 的 决 定... 17 教 育 部 财 政 部 关 于 实 施 国 家 示 范 性 高 等 职 业 院 校 建 设 计 划 加 快 高 等 职 业 教 育 改 革 与 发 展 的 意 见...

More information

鸽子(三)

鸽子(三) ...1...3...5...7....9...12...20...28...30...33...39...52....53...56...60...61...64...67....86 I ...88...90...95.... 102... 107... 112... 115... 125... 127... 128... 134... 139... 149... 151... 152... 156...

More information

兽药基础知识(四)

兽药基础知识(四) ...1...1...3...4...9...10... 11...13...14...15...16...18...19...23...24...26...29...32...34 I ...36...38...39...40...41...43...45...47...49...50...52...53...54...55...57...59...61...64 E...68...69...72

More information

园林植物卷(十).doc

园林植物卷(十).doc I II III 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

More information

园林植物卷(十七).doc

园林植物卷(十七).doc I II III 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

More information

临床手术应用(三)

临床手术应用(三) ...1...5...5... 11...16...16...24...30...34...36...38...42...49...49...51...53...55...57...58...58...61 I ...63...65...67...69...73...73...75...80...83...85...86...88...92...94...94...98... 101... 102...

More information

家装知识(二十)

家装知识(二十) I..1...2...5...7...10... 11...12...14...17...19...20...21...25...26...27...30...32...33...37...40...42...44...45 II...49...50...53...54...56...61...62...63...64...67...68...69...71...74...75...76...79...80...81...81...82...83...87...90...91...93

More information

医疗知识小百科

医疗知识小百科 ...1...3...4...7...8...9... 10... 12... 13... 13... 14... 15... 17... 19... 29... 30... 32... 34... 37... 38... 39... 42 I ... 47... 48... 52... 53... 57... 58... 59... 61... 63... 65... 66... 67... 69...

More information

家庭万事通(一)

家庭万事通(一) I...1...2...3...5...7...9...10... 11...12...14...14...16...18...19...21...22...24...27...28...29...31...32...34 II...36...37...38...39...41...45...46...46...49...50...51...52...54...56...58...59...67...69...71...72...73...75...77...78...80...83

More information

家装知识(三)

家装知识(三) I...1...2...3...4...7...8... 11...13...16...18...19...20...21...23 10...25...26...30...31...33...35...38...42...44 II...45...47...49...51...53...54...56...57...59...62...64...66...68...69...71...75...77...80...81...82...83...85...85...88...90...91

More information

园林绿化(一)

园林绿化(一) ( 20 010010) 7871092 32 162.50 2004 12 1 2004 12 1 11 000 495.00 ( 19.80 ) ...1...2 605...5 84K...7 9...9...12...15...17...18...20...30...32...36...40...40...43...45...50 ( )...52 I ... 106... 113... 121...

More information

园林植物卷(十五).doc

园林植物卷(十五).doc I II III 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

More information

最新监察执法全书(一百五十).doc

最新监察执法全书(一百五十).doc ................................ I ............................. 2000.................. II ...... III [2002]5 1 2 3 4 5 6 1 2 3 1993 8 14 () () () () () () () () () () () () () () () () () ()

More information

兽药基础知识(三)

兽药基础知识(三) ...1...2...5...8...10... 11...16...18...20...24...26...27...30...31...35...39...43...45...46 I ...49...50...52...53...54...54...57...61...62 ()...64...65...67...68...71...73...75...77...77...78.....80...81

More information

奥运档案(四).doc

奥运档案(四).doc ...1 2012...1...2 (2004.3.22 28)...2 (2004 3 15 21)...8 (2004.3.8 14)...14 (2004.3.1 3.7)...21 (2004.2.23 29)...28 (2004.3.8 14)...34...41 2012...45...48...50 1964...51 1968...59 1972...69 1976...79 1980...90

More information

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

最新监察执法全书(五十).doc ............................ ( )... I ................................. II ..................... III @ 3 12 2 2 1 ( ) ( [1999]9 ) ( [2001]21 ) 1. 2. 3.

More information

最新执法工作手册(三百八十四)

最新执法工作手册(三百八十四) [1999 2 5 1999 7 ]............... I ... 1998... 1998................... II ....................... III [1999 2 5 1999 7 ] 30 30 2 1 15 30 30 B 15 1 1 2 2 l 2 1 5 12 5 10 18 10 24 1 1 2 1 l 24 1 12 13 24

More information

中华美食大全4

中华美食大全4 I...1...1...2...3...5...6...8...9...12...13...14...16...17...19...20...21...23...24...26...27...28...30...31...33 II...35...37...39...40...41...43...44...45...47...48...49...50...52...54...55...56...57...58...60...62...63...65...66...67...69...70

More information

动物杂谈_二_.doc

动物杂谈_二_.doc I...1...2...4...5...6...7...12...13...14 :...16...18 10...19...21...23...24...24 50...25...26...27 :...28...29...30 :...31...32 II...33...34...35...35...36...37 -...43...44...45...49...50 8000...54...54...57...58...60...61...63...65...68...77...78...79...90...93

More information

抗非典英雄赞歌(三)

抗非典英雄赞歌(三) ...1...8... 16... 25... 30... 34... 38... 45... 48 15... 50... 51... 53... 54 :... 56 309... 61... 64 I ... 67.. 70... 73... 76... 80... 85... 87... 91... 94... 98... 100... 103... 106 80...116...118...

More information

新时期共青团工作实务全书(三十五)

新时期共青团工作实务全书(三十五) ....................................... I ................................. II ...... 90 90... III ' ' 1 2 3 4 1 2 3 30 90 02 0.15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 2 3 4 5 6 7 8 9 10 2 11 12

More information

经济法法律法规第十九卷

经济法法律法规第十九卷 ...1...6...12...18...29 ( )...34...39...53...62...67...76...83...87 (2001 )...92...99 I ...111... 118... 120... 122... 128... 134... 137... 140... 141... 144... 151... 152 II ... 153... 158... 163 ()...

More information

游戏攻略大全(五十九).doc

游戏攻略大全(五十九).doc ...1 ----...15...41 2...41...41...42...43...43...44...45...46...47...48...49...50...51...52...53...54...55...57...58...59 I II...60...61...63...64...65...66...66...67...69...70...70...71...72...73 ---...78...79...79...79...80...80...80...80...81...81...82...82

More information

火灾安全实例

火灾安全实例 ...1...2...3...4... 19... 21... 26... 30... 40... 41... 43... 45... 51... 58... 61... 63... 66... 73... 79... 95... 97 I ... 98... 103... 105...113 ( )... 126... 135... 137... 144... 149... 157... 161...

More information

兽药基础知识(七)

兽药基础知识(七) ...1...4...5...7...9... 11...14...15...17...19...21...24...27.....28...29...31...32...38...39 I ...42...43...46...47...48...50...52...54...56...57...62...64...65...66...69...71...78...79...82...83...87

More information

实用玉米技术(二)

实用玉米技术(二) 1...1...6...10...16...18...20...22...24...26...26...31...32...32...34...35...37...42...43...44...46 I ...47...50...52...53...54...55...57...58...59...62...63...66...67...69...72...80...80...81...82...84...85...87

More information

中国政法大学(一).doc

中国政法大学(一).doc ...1...6...7...31...32...35...36...40...45...53...60...67...79...82 () I ...88...96... 108... 120 ()... 124... 126... 128 ( )... 132... 134... 143 ( )... 143 ( )... 146... 160... 163... 166 II ... 169

More information

水产知识(一)

水产知识(一) I...1...2...4...5...6...7...10...12...13...19...20...22...23...25...28...30...31...32...33 :...36 ...37...38...40...42...44...47...48...51...51...55...57...58...59...59...61...70...73...74...76...76...78

More information

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

國立中山大學學位論文典藏.PDF I II ..1.1.1.1.4. 4.....5...11.13... 13...23.........31........42....42 57.......70...70... 75.......83......83......88....100..115.115.127.130..137.137.138..141 III 1979 860 1 1979 1980 4 1987 1979 34

More information

Microsoft Word - 405-mpc-min-chi.doc

Microsoft Word - 405-mpc-min-chi.doc 城 市 規 劃 委 員 會 都 會 規 劃 小 組 委 員 會 二 零 零 九 年 十 月 九 日 上 午 九 時 舉 行 的 第 4 0 5 次 會 議 記 錄 出 席 者 規 劃 署 署 長 伍 謝 淑 瑩 女 士 黃 遠 輝 先 生 主 席 副 主 席 陳 華 裕 先 生 陳 弘 志 先 生 梁 乃 江 教 授 林 雲 峰 教 授 杜 本 文 博 士 邱 小 菲 女 士 陳 家 樂 先 生 陳

More information