哈尔滨工程大学c语言_第1页
哈尔滨工程大学c语言_第2页
哈尔滨工程大学c语言_第3页
哈尔滨工程大学c语言_第4页
哈尔滨工程大学c语言_第5页
已阅读5页,还剩33页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

164 一 选择题一 选择题 1 对一维数组 a 的正确说明是 D A int a 10 B int n 10 a n C int n D define SIZE 10 scanf d int a SIZE int a n 2 能对二维数组 a 进行正确初始化的语句是 B A int a 2 1 0 1 5 3 2 B int a 3 1 2 3 4 5 6 C int a 2 4 1 2 3 4 5 6 D int a 3 1 0 1 1 2 3 4 1 1 3 对两个数组 a 和 b 进行如下初始化 char a ABCDEF char b A B C D E F 则以下叙述正确的是 D A a 与 b 数组完全相同 B a 与 b 长度相同 C a 和 b 中都存放字符串 D a 数组比 b 数组长度长 4 以下数组定义中不正确的是 D A int a 2 3 B int b 3 0 1 2 3 4 5 C int c 100 100 0 D int d 3 1 2 1 2 3 1 2 3 4 5 以下选项中 不能正确赋值的是 A A char s1 10 s1 Ctest B char s2 C t e s t C char s3 20 Ctest D char s4 Ctest n 二 阅读程序写出结果二 阅读程序写出结果 1 include void main char ch 7 12ab56 int i s 0 for i 0 ch i 0 i 2 s 10 s ch i 0 printf d n s 答案 1 2 include void main int a 10 1 2 2 3 4 3 4 5 1 5 int n 0 i j c k for i 0 i 10 n i c a i 165 for j i 1 j 10 n j if a j c n for k j k 10 n k a k a k 1 for i 0 i 10 n i printf d a i 答案 12345 3 include void main int i char a Time b Tom for i 0 a i 0 i if a i b i if a i a else printf c a i 32 else printf 答案 t M 4 include define LEN 4 void main int j c static char n 2 LEN 1 8980 9198 for j LEN 1 j 0 j c n 0 j n 1 j 2 0 n 0 j c 10 0 for j 0 j 1 j puts n j 答案 7078 9198 166 三 程序填空三 程序填空 1 程序的功能是在 a 数组中查找与 x 值相同的元素的所在位置 include void main int a 11 x i printf Enter 10 integers n for i 1 i 1 3 i 2 数组 a 包括 10 个整型元素 从数组 a 的第 2 个元素开始 分别将后项减前 项之差存入数组 b 并按每行 3 个元素的格式输出数组 b 例如 b 0 a 1 a 0 include void main int a 10 b 10 i for i 0 1 i scanf d for i 1 2 i b i a i a i 1 for i 1 i 10 i printf 3d b i if 3 printf n 答案 1 i 9 167 2 i 9 3 i 3 0 四 程序改错四 程序改错 1 程序的功能是 计算数组各元素之和 并存入首元素中 include void main int a 10 0 found int i for i 0 i 10 i scanf d for i 1 i 10 i a 0 a 0 a i found printf d n a 0 答案 1 int a 3 0 2 for i 1 i 3 i a 0 a 0 a i 2 函数fun的功能是 将数组s中的字符串的反序和正序连接后形成的新字符 串放在数组t中 例如 当数组s所存的字符串为 ABCD 时 数组t应为 DCBAABCD include include include void fun char s char t int i d d strlen s for i 1 i d i found t i s d 1 i for i 0 i d i t d i s i t 2 d 0 found void main 168 char s 100 t 100 clrscr printf nPlease enter string S scanf s found fun s t printf nThe result is s n t 答案 1 for i 0 i d i 2 t 2 d 0 3 scanf s s 五 程序问答五 程序问答 1 include void main int a 100 i j n p printf 输入数值的个数 n 和数列 a n scanf d scanf d for i 1 i n 1 i scanf d p a i j i 1 while p 0 a j 1 a j j a j 1 p for i 0 i n i printf d a i printf n 问题 1 该程序的功能是什么 问题 2 如果先输入一个 10 再输入下面的 10 个数 1 9 2 8 3 7 4 6 5 5 则该程序输出什么 答案 1 升序 2 1 2 3 4 5 5 6 7 8 9 169 2 include void main int a 11 33 27 33 1 22 8 12 int i t j for i 0 ii j if a j 1 a j t a j 1 a j 1 a j a j t for i 0 i 8 i printf 4d a i 问题 1 此程序的运行结果是什么 问题 2 若将函数中的语句 if a j 1 a j 则程序的运行结果是什么 答案 1 33 33 27 22 12 11 1 8 2 8 1 11 12 22 27 33 33 六 编程六 编程 1 在一组数中找出最大与最小值之差 include void main int a 10 i x y printf please input the number n for i 0 i 10 i scanf d x a 0 y a 0 for i 1 ix x a i if a i y y a i printf the answer is d x y 2 用选择法将一组整数按降序排序 include void main 170 int a 10 i j k t printf please input the numbers n for i 0 i 10 i scanf d for i 0 i 8 i k i for j i 1 ja k k j t a k a k a i a i t for i 0 i 9 i printf d a i 3 在一个按升序排列的数组中插入一个数 使数组仍有序 include void main int a 7 3 5 7 9 11 23 int b i k scanf d a 6 b i 5 while b 0 a i 1 a i a i b i printf cha ru hou de shu zu n for i 0 i 7 i printf d a i 4 用 顺序 查找法 在一组数中查找一个值为 K 的元素 若有 输出 YES 若 无 输出 NO include void main int a 10 i j k printf please input the numbers n 171 for i 0 i 10 i scanf d printf please input the aim number n scanf d for i 0 i9 printf NO n else printf YES n 5 输出以下形式的图案 include void main int i j for i 1 i 4 i for j 1 j i 1 j printf for j 1 j 9 2 i j printf printf n 6 将一个数组按逆序重新存放在该数组中 include void main int a 10 i t printf please input the numbers n for i 0 i 10 i scanf d for i 0 i 10 2 i t a i a i a 10 1 i a 10 1 i t 172 for i 0 i 10 i printf d a i 7 打印一个 5 行的杨辉三角形 include void main int a 5 5 0 i j for i 0 i 4 i a i 0 a i i 1 for i 2 i 4 i for j 1 j i j a i j a i 1 j a i 1 j 1 for i 0 i 4 i for j 0 j i j printf 3d a i j printf n 8 用二维字符数组存储下列图形并输出 include void main char c 5 5 0 int i j for i 0 i 5 i for j i j 5 j c i j for i 0 i 5 i for j 0 j 5 j printf c c i j printf n 173 9 计算二维数组主对角线元素之和 include void main int a 3 3 i j x printf please input the numbers n for i 0 i 3 i for j 0 j 3 j scanf d x 0 for i 0 i 3 i x x a i i printf the answer is d n x 10 用 折半 查找法 在一组按降序排列的数中查找一个值为 K 的元素 若有 输出 YES 若无 输出 NO include void main int a 10 10 9 8 7 6 5 4 3 2 1 l r m k printf please input the numbers n scanf d l 0 r 9 m 1 r 2 while la m r m 1 else l m 1 m l r 2 if l r printf n YES else printf n NO 11 编写一个程序计算一个字符串的长度 不使用库函数 174 include include void main char s 80 int n 0 gets s while s n n printf length d n 12 比较两个字符串 S1 S2 的大小 不使用库函数 若 S1 S2 输出 1 若 S1 S2 输出 0 若 S1 S2 输出 1 include include void main char s1 80 s2 80 int i n gets s1 gets s2 i 0 while s1 i if s1 i s1 i s2 i n 1 if s1 i printf jie guo shi d n 13 用 冒泡 法将一组数按升序排序 include void main int a 10 i j x for i 0 i 10 i scanf d for j 0 j 9 j for i 0 ia i 1 x a i a i a i 1 a i 1 x 175 for i 0 i 10 i printf 4d a i 14 在一个二维数组中形成并输出如下矩阵 1 1 1 1 1 2 1 1 1 1 3 2 1 1 1 4 3 2 1 1 5 4 3 2 1 include void main int a 5 5 int i j for i 0 i 5 i for j 0 j 5 j if i j a i j 1 else a i j i j 1 for i 0 i 5 i for j 0 j 5 j printf 2d a i j printf n 15 有一个 3 4 的矩阵 求其中的最大元素的值及位置 include void main int a 3 4 i j x l r for i 0 i 3 i for j 0 j 4 j scanf d x a 0 0 l r 0 for i 0 i 3 i for j 0 jx x a i j 176 l i r j printf Max number is d position is d d n x l r 一 选择题一 选择题 1 根据下面的定义 能打印出字母 M 的语句是 D struct person char name 9 int age struct person class 10 John 17 Paul 19 Mary 18 Adam 16 A printf c n class 3 name B printf c n class 3 name 1 C printf c n class 2 name 1 D printf c n class 2 name 0 2 若有以下结构体定义 struct example int x1 int y1 则 B 是正确的使用方式 A struct example x1 100 B struct example xy xy x1 100 C struct xy xy x1 100 D struct example xy 100 3 下面结构体数组的定义 错误的是 D A struct student int num char name 10 float score struct student stu 30 B struct int num char name 10 float score stu 30 C struct student int num char name 10 float score stu 30 D struct stu 30 int num char name 10 float score 177 二 写出以下程序的运行结果二 写出以下程序的运行结果 1 include void main struct cmplx int x int y cnum 2 1 3 2 7 printf d n cnum 0 y cnum 0 x cnum 1 x 答案 6 2 include void main struct date int year month dat today printf d n sizeof struct date 答案 6 3 include void main struct MING struct int x int y in int a int b e e a 1 e b 2 e in x e a e b e in y e a e b printf d d e in x e in y 答案 2 3 4 include void main struct abc 178 int a b c struct abc s 2 1 2 3 4 5 6 int t t s 0 a s 1 b printf d n t 答案 6 5 include include struct student char name 9 char sex float score 2 struct student f struct student a struct student b Zhao m 85 0 90 0 int i strcpy a name b name a sex b sex for i 0 i 2 i a score i b score i return a void main struct student c Qian f 95 0 92 0 d d f c printf s c 2 0f 2 0f n d name d sex d score 0 d score 1 答案 Zhao m 85 90 3 改错题改错题 1 定义一个二维平面上的点结构体 从键盘输入一个点的坐标并输出到屏幕 上 请找出以下程序的错误并修改 include struct point 声明点的结构体 point int x x 坐标 int y y 坐标 1 void main 主函数 179 struct point pt 定义结构体变量 pt printf Please input the point scanf d d pt x pt y 2 printf The point you input is x d y d 3 答案 1 最后加分号 2 改为 scanf d d 3 改为 printf The point you input is x d y d pt x pt y 2 定义一结构体 People 包括姓名 性别 职位 年龄 要求从键盘输入 3 名人员的相应信息并显示 请找出下面程序的错误并修改 include struct People 结构体 People char name 20 姓名 char sex 性别 char position 20 职位 int age 年龄 void main struct People peo 定义结构体数组 此处请修改 1 int i for i 0 i 3 i 输入 printf Please input the d People s name n i 1 scanf c peo i name 输入姓名 此处请修改 2 getchar printf Please input the person s sex n scanf c peo i sex 输入性别 此处请修改 3 getchar printf Please input the People s position n 输入职位 scanf s peo i position 4 getchar printf Please input the person s age n 输入年龄 scanf d for i 0 i 3 i 输出 printf The d People s name is s sex c position s age d n i 1 peo i name peo i sex peo i position 此处请修改 5 180 答案 1 改为 struct People peo 2 改为 scanf c 3 改为 scanf c 4 改为 scanf s 5 改为 printf The d People s name is s sex c position s age d n i 1 peo i name peo i sex peo i position peo i age 181 四 编程题四 编程题 1 设计一个通信录的结构体类型 并画出该结构体变量在内存的存储形式 struct photonote char name 20 char number 20 2 用结构体变量表示矩形 编写矩形面积函数 矩形周长函数 输入矩形长 宽函数 输出矩形长宽函数 输入矩形的长宽并进行面积和周长的计算 include struct juxing float chang float kuan struct juxing shuru struct juxing r printf shu ru ju xing chang kuan n scanf f f return r void shuchu struct juxing r printf chang shi f n r chang printf kuan shi f n r kuan float mianji struct juxing r return r chang r kuan float zhouchang struct juxing r return 2 r chang 2 r kuan void main struct juxing a a shuru shuchu a printf mian ji wei f n mianji a printf zhou chang wei f n zhouchang a 182 3 设有学生情况登记表如表 9 3 所示 用选择法选择法对该表按成绩从小到大排序 表 9 3 学生情况登记表 学号 num 姓名 name 8 性别 sex 年龄 age 成绩 score 101Zhang M1998 3 102Wang F1887 2 103LiM2073 6 104ZhaoF2034 6 105MiaoM1899 4 106GuoM1768 4 107WuF1956 9 108XuF1845 0 109LinM1976 5 110Ma F1985 3 include struct Student int num char name 8 char sex int age float score void main int i j int min struct Student temp struct Student stu 10 101 zhang M 19 98 3 102 wang F 18 87 2 103 li M 20 73 6 104 zhao F 20 34 6 105 miao M 18 99 4 106 guo M 17 68 4 107 wu F 19 56 9 108 xu F 18 45 0 109 lin M 19 76 5 110 ma F 19 85 3 for i 0 i 9 i min i for j i j 9 j if stu i score stu j 1 score min j 1 temp stu min stu min stu i 183 stu i temp for i 0 i 9 i printf num d name s sex c age d score f n stu i num stu i name stu i s ex stu i age stu i score getchar 4 某班有 20 名学生 每名学生的数据包括学号 姓名 3 门课的成绩 从 键盘输入 20 名学生的数据 要求打印出每门课的平均成绩 以及每名学生的平 均成绩并输出最高分的学生的数据 学号 姓名 3 门课 平均成绩 include struct student char num 4 char name 8 float score 3 float ave void main struct student s1 20 int i j float avg1 0 avg2 0 avg3 0 sum 0 for i 0 i 20 i scanf s s f f f s1 i num s1 i name for i 0 i 20 i avg1 s1 i score 0 avg2 s1 i score 1 avg3 s1 i score 2 s1 i ave s1 i score 0 s1 i score 1 s1 i score 2 3 avg1 20 avg2 20 avg3 20 printf 2 men ke de ping jun cheng ji f f f n avg1 avg2 avg3 sum s1 0 ave j 0 for i 1 i 20 i if s1 j ave s1 i ave j i 184 for i 0 i 20 i printf ping jun cheng ji f n s1 i ave printf ZuiGaoFen XueHao s XingMing s ChengJi f f f PingJun f n s1 j num s1 j name s1 j score 0 s1 j score 1 s1 j score 2 s1 j av e 5 统计候选人总得票数 假设有 5 名候选人 每次输入一个得票候选人的名 字 要求最后按从大到小输出每个人的得票数排名 include include struct note char name 20 int count void main struct note notes 5 zhao 0 qian 0 li 0 sun 0 wang 0 char tou 20 int i j for i 0 i 20 i scanf s tou for j 0 j 20 j if strcmp tou notes j name notes j count for i 0 i 4 i for j i j 4 j if notes i count notes j 1 count struct note temp notes i notes i notes j 1 notes j 1 temp for i 0 i 5 i printf XingMing s PiaoShu d n notes i name notes i count 6 定义一个结构体变量 包括年 月 日 计算该日在本年中是第几天 注意闰年问题 include 185 struct date int year int month int day void main struct date date1 int i sum 0 scanf d d d for i 1 i2 sum 3 if date1 year 400 0 date1 year 4 0 sum date1 day printf shi di d tian n sum 186 一 单项选择一 单项选择 1 设有定义 double a 10 s a 以下能代表数组元素 a 3 的是 B A s 3 B s 3 C s 3 D s 3 2 设有定义 int n1 0 n2 p 以下赋值语句中与 n2 n1 语句等 价的是 A A p qB p qC p D p q 3 若有定义 int x 0 p 则语句 printf d n p 的输出结果是 B A 随机值B 0C x 的地址D p 的地址 4 下述程序的输出结果是 B void main int a 10 1 2 3 4 5 6 7 8 9 10 p printf d n p q A 16B 10C 8D 6 5 下面程序段的运行结果是 B char str ABC p str printf d n p 3 A 67B 0C 随机值D 0 二 阅读程序写结果二 阅读程序写结果 1 include void main int a 2 4 6 8 10 int y 1 x p p for x 0 x 3 x y p x printf d n y 答案 19 2 include void main char s 121 int k 0 a 0 b 0 do k if k 2 0 a a s k 0 continue b b s k 0 a a s k 0 187 while s k 1 printf k d a d b d n k a b 答案 k 2 a 4 b 3 3 include int b 2 int func int a b a return b void main int a 2 res 2 res func printf d n res 答案 6 4 include int sub int s void main int i k for i 0 i 4 i k sub printf 2d k printf n int sub int s static int t 0 t s t return t 答案 0 1 3 6 三 程序填空三 程序填空 1 以下程序先输入数据给数组 a 赋值 然后按照从 a 0 到 a 4 的顺序输 出各元素的值 最后再按照从 a 4 到 a 0 的顺序输出各元素的值 请填空 include void main int a 5 int i p 188 p a for i 0 i 5 i scanf d p 1 for i 0 i 0 i p printf d p printf n 答案 1 p a 2 p a 4 或 p 2 以下程序的功能是 将无符号八进制数字构成的字符串转换为十进制整数 例如 输入的字符串为 556 则输出十进制数 366 请填空 include stdio h void main char p s 6 int n 1 gets p n p 0 while 2 0 n n 8 p 0 printf d n n 答案 1 p s 2 p 3 以下程序调用 findmax 函数求数组中最大的元素在数组中的下标 请填空 include void findmax int s int n int k int p for p 0 k p ps k 1 void main int a 10 i k for i 0 i 10 i scanf d 2 printf d d n k a k 189 答案 1 k p 2 findmax a 10 s 0 void main char a 20 b 10 scanf s b s 3 puts a 答案 1 t 0 或 t 2 s t 或 s t 3 a b 5 下面程序是将 p 指向的常字符串中大写字母取出依次放到 b 数组中 小写字 母取出依次放在 a 数组中 请填空 include void main char a 80 b 80 p lYoOvUe int i 0 j 0 while 1 if p a else b j p p 3 puts a puts b 答案 1 p 0 或 p 2 a i p 3 a i 0 b j 0 或 a i b j 0 四 程序问答四 程序问答 1 include include 190 void main char b1 8 abcdefg b2 8 pb b1 3 while pb b1 strcpy b2 pb printf d n strlen b2 问题 1 该程序运行结果如何 问题 2 当 while 循环结束时 pb 指向了哪里 答案 1 7 2 首地址 2 include void swap int pt1 int pt2 int temp temp pt1 pt1 pt2 pt2 temp void exchange int q1 int q2 int q3 if q1 q2 swap q1 q2 if q1 q3 swap q1 q3 if q2 q3 swap q2 q3 void main int a b c scanf d d d exchange printf d d d n a b c 问题 1 程序运行时若输入了 12 9 6 会输出什么结果 问题 2 程序的功能是什么 问题 3 若把 swap 函数体中的所有 pt1 改为 pt1 pt2 改为 pt2 结果会如 何 请分析原因 答案 1 12 9 6 2 从大到小排序 降序排列 3 结果仍是 12 9 6 但此处输出结果不是排序后的结果 输出的是输入顺 序 的数字 3 include void fun1 char s char c char p q 191 for p s p 0 p if p c for q p q 0 q q q 1 p void main char str 20 attactet c1 t fun1 str puts str 问题 1 程序运行结果 问题 2 函数 fun1 的功能是什么 问题 3 如果将函数 fun1 中的语句 p 去掉 程序结果又怎样 分析该语句 的作用 答案 1 aace 2 把字符数组中的 t 删除掉 3 atace 五 程序改错五 程序改错 1 输入 5 个字符串 输出其中最大的字符串 include void main int i char str 80 max 80 found scanf s found max str for i 1 i 5 i scanf s str found if max str found max str printf max is s n max 答案 1 scanf s str 2 strcpy max str 192 3 strcmp max str 4 strcpy max str 2 下面程序将给定字符串循环左移 1 位 首字符移动到字符串的末尾 如输入 abcde 输出结果为 bcdea include void move1 char s char p t p s 1 found t s while p found p p 1 p found p t void main char p str 10 abcde move1 str printf s n str 答案 1 t s 2 p 1 p 3 p 1 t 3 以下程序用来删除字符串 s 中所有空格字符 如输入 this is a test 输出结 果为 thisisatest include void main char s 80 p q found scanf s s for p q s p 0 p if p found q p q 193 found q 1 0 puts s 答案 1 p q 2 q 0 六 编程六 编程 以下程序均要求使用指针来实现 1 编程判断输入的一串字符是否为 回文 是则输出 Yes 否则输出 No 所 谓 回文 是指正读和倒读都一样的字符串 如 ratar 就是回文 include include void main char str 100 p q int flag 1 scanf s str p str q str strlen str 1 while p q if p q flag 0 break if flag 1 printf Yes n else printf No n 2 strcat 函数用来连接两个字符串 如 char s1 20 holiday s2 10 economy 则 strcat s1 s2 可以将 s2 中的字符串连接到 s1 字符串的后面 此时 s1 中的 字符串变为 holiday economy 请自行编写函数 mystrcat 完成上述功能 include include void mystrcat char p char q while p p while q p q p 0 194 void main char s1 20 s2 20 char p s1 q s2 gets s1 gets s2 mystrcat p q printf s n s1 2 有 5 个候选人参与选举 共 100 张选票 每张选票上只能推选一个人 编 程统计每个候选人的得票数 并输出结果 include include void main char name 5 zhang wang li zhao liu char note 10 int j int count1 0 count2 0 count3 0 count4 0 count5 0 for j 0 j 10 j scanf s note if strcmp name 0 note count1 if strcmp name 1 note count2 if strcmp name 2 note count3 if strcmp name 3 note count4 if strcmp name 4 note count5 printf Wu Ge Ren De De Piao Fen Bie Wei n printf d d d d d count1 count2 count3 count4 count5 3 统计一段英文短文中出现的单词的个数 单词间以空格分隔 可以有多个 空格 include include void main char a 39 char p a int count 0 flag 0 gets a 195 if p flag 1 while p 0 if p p if flag 1 printf the num of words is d n count else printf the num of words is d n count 1 4 对一组整数降序排序 要求排序功能由调用函数实现 include void main void sort int a int n int a 10 i int p a for i 0 i 9 i scanf d sort p 10 printf pai xu hou shun xu shi n for i 0 i 10 i printf d a i printf n void sort int a int n int temp i j for i 0 i n 1 i for j i 1 j n j if a i a j temp a i a i a j a j temp 196 一 一 单项选择题单项选择题 1 下列关于 C 语言数据文件的叙述中正确的是 D A 文件由 ASCII 码字符序列组成 C 语言只能读写文本文件 B 文件由二进制数据序列组成 C 语言只能读写二进制文件 C 文件由记录序列组成 可按数据的存放形式分为二进制文件和文本文件 D 文件由数据流形式组成 可按数据的存放形式分为二进制文件和文本文 件 2 以下叙述中不正确的是 D A C 语言中的文本文件以 ASC 码形式存储数据 B C 语言中对二进制文件的访问速度比文本文件快 C C 语言中 随机读写方式不适用于文本文件 D C 语言中 顺序读写方式不适用于二进制文件 3 以下叙述中错误的是 C A C 语言中对二进制文件的访问速度比文本文件快 B C 语言中 随机文件以二进制代码形式存储数据 C 语句 FILE fp 定义了一个名为 fp 的文件指针 D C 语言中的文本文件以 ASCII 码形式存储数据 二 阅读程序写结果二 阅读程序写结果 1 读程序 写功能 include void main FILE f1 f2 int k char c1 c2 if f1 fopen c tc p1 c r NULL printf file can not open n 197 exit 0 if f2 fopen a p1 c w NULL printf file can not open n exit 0 for k 1 k 1000 k if feof f1 break fputc fgetc f1 f2 fclose fp1 fclose fp2 答案 复制 f1 到 f2 2 假定在当前盘当前目录下有 2 个文本文件 其名称和内容如下 文件名a1 txta2 txt 内容 写出下列程序运行后的输出 include void main FILE fp void fc if fp fopen a1 txt r NULL printf file can no

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论