往年威盛电子笔试题

| 收藏本文 下载本文 作者:折竹声

以下是小编为大家准备了往年威盛电子笔试题(共含10篇),欢迎参阅。同时,但愿您也能像本文投稿人“折竹声”一样,积极向本站投稿分享好文章。

往年威盛电子笔试题

篇1:往年威盛电子笔试题

往年威盛电子笔试题

1.在第一个声明处编译出了奇怪的.错误,为什么?

#include

#include “myfun1.h”

#include “myfun2.h”

int myInt1;

int myInt2;

2.三组程序,找出你认为的错误,

(1)a.c long temp[255];

b.c extern *temp;

(2)a.c long temp[255];

b.c extern temp[256];

(3)a.c long temp[255];

b.c extern temp[];

3.printf(“0x%x”, (&0)[1]); 请问打印了什么?

4.汇编,用ax,bx,cx,dx,求1000×1000/30(四舍五入),结果放在ax中,

5.编最优化Bubble(int *pIntArray,int L),要求:交换元素不能用临时变量,如果有序需要最优。

6.用任意一种编程语言写n!的算法。

篇2:威盛笔试题

威盛笔试题

早上记起有威盛的笔试,隐约记得好像是9点,

到了一看,发现不到30人,当时心里还说,怪不得选

这么小的教室,有道理,呵呵!后来才知道笔试时间是

9:30,而且后面来了很多人,四个人的桌子坐了5,6个人

还有很多兄弟站着答题,即使这样,还有很多人没地方,结果

没让他们考试。这也罢了,考到一半居然有人进来轰人,

真是faint。

既然考过了,给后人做点贡献吧。

考题一共七套,应聘不同的职位采用不同考题。其实这欧都不知道,

考场才知道,于是随便选了一个logic。一共十道题,

1.写你最近遇到的一个问题及解决方法,可以是工作上和生活上的任何事情

英文做答。easy,当作英文小短文写了。

2.有点忘了,好像是说除了ICs以外,还有一些什么东西的主要作用(忘了)

3.设计一个全加器

4.用CMOS技术画出用verilog表示的z=s?A:B的结构图。

5.也是跟verilog有关的,好像是给出时序,输入,设计什么东西之类的',也记不太清!

6.给一个黑匣子,有输入X,时序CK,输出Y,给定settimeY和xxxtimeZ,问Y或者Z或者

Y+Z能否为negativetime,why?应该是这样的

7.给你一堆名词,举例他们的作用,

有PCI、ECC(?)、DDR、interrupt、pipeline

8.好像是设计一个自动售货机系统,卖soda水的,只能投进三种硬币,要正确的找回钱数

给出详细的设计步骤和方法,画出框图,什么输入输出什么的自己定

9.10被轰出了教室,没看!

个人感觉:考试及其混乱,可以看书,也经常有人相互交流。这么多人居然着这么小

一个教室,还考到一半被人轰了出来,真是让我对威盛的印象大打折扣。

相关主题阅读:

雅虎公司C#笔试题

腾讯技术类笔试

intel技术类笔试题

四大事务所笔试题目选摘

篇3:威盛软件笔试题

威盛软件笔试题

1.说明下面程序的作用,

func(char*a,char*b)

{

while(*a++=*b++);

return;

}

2.#include %26lt;stdio.h%26gt;

#define ADD(p) {p++;(*p)++;}

Add(int *p) {p++;(*p)++;}

int a[]={0,1,2};

int main

{

int *p=a;

ADD(p)

ADD(p)

printf(“%d,%d,%dn”,a[0],a[1],a[2]);

p=a;

Add(p);

Add(p);

printf(“%d,%d,%dn”,a[0],a[1],a[2]);

}

输出多少?

3.说明下面的的表达有没有不同,如果不同,请说明不同在哪里,

char* s1=“hello”;

char s2[]=“world”;

4.简述auto,static,register,extern四种存储类型的'区别

5.int count=0;

int x=

int main()

{

while(x)

{

count++;

x=x%26(x-1);

}

return count;

}

问输出返回的count值。

6.编程给一个程序,输入N,(1%26lt;=N%26lt;=20)给N*N的矩阵进行Zigzag赋值,

即:N=0 时,a[0]=0;

N=4 时,a[4][4]=0 1 5 6

2 4 7 12

3 8 11 13

9 10 14 15

篇4:威盛软件笔试题

威盛软件笔试题目分享:

1.#include #define ADD(p) {p++;(*p)++;}Add(int *p) {p++;(*p)++;}int a[]={0,1,2};int main(){int *p=a;ADD(p)ADD(p)printf(“%d,%d,%d/n”,a[0],a[1],a[2]);p=a;Add(p);Add(p);printf(“%d,%d,%d/n”,a[0],a[1],a[2]);}输出多少?

2.:说明下面程序的作用,

func(char*a,char*b){while(*a++=*b++);return;}

3.:说明下面的的表达有没有不同,如果不同,请说明不同在哪里,

char* s1=“hello”;

char s2[]=“world”;

4.简述auto,static,register,extern四种存储类型的区别

5.:int count=0;int x=2007int main(){while(x){count++;x=x&(x-1);}return count;}问输出返回的count值。

6.:8个台阶,上台阶的人一次最多上3个台阶,问上这个8个台阶有多少种方法?

7.编程给一个程序,输入N,(1<=N<=20)给N*N的矩阵进行Zigzag赋值,即:N=0 时,a[0]=0;N=4 时,a[4][4]=0 1 5 6 2 4 7 12 3 8 11 13 9 10 14 15

篇5:威盛笔试试题

威盛笔试试题

软件笔试题

1.三组程序,找出你认为的错误,

(1)a.c long temp[255];

b.c extern *temp;

(2)a.c long temp[255];

b.c extern temp[256];

(3)a.c long temp[255];

b.c extern temp[];

2.在第一个声明处编译出了奇怪的错误,为什么?

#include

#include “myfun1.h”

#include “myfun2.h”

int myInt1;

int myInt2;

3.printf(“0x%x”, (&0)[1]); 请问打印了什么?

4.汇编,用ax,bx,cx,dx,求1000×1000/30(四舍五入),结果放在ax中。

5.编最优化Bubble(int *pIntArray,int L),要求:交换元素不能用临时变量,如果

有序需要最优。

6.用任意一种编程语言写n!的算法。

Asic部分

1.一个四级的Mux,其中第二级信号为关键信号,如何改善timing?

2.一个状态机的题目用Verilog实现。

3.Asic中的design flow的实现。

4.用逻辑门画出D触发器。

5.给出某个一般时序电路的图,有Tsetup,Tdelay,Tck>q还有clock的del

ay,写出决定最大时钟的.因素,同时给出表达式。

6.用C语言实现统计某个cell在某.v文件调用的次数。

7.Cache的主要部分。

2003 EE笔试题目

1.写出电流公式。

2.写出平板电容公式。

3.电阻R和电容C串联,输入电压为R和C之间的电压,输出电压分别为C上电压和R上电

压,要求绘制这两种电路输入电压的频谱,判断这两种电路何为高通滤波器,何为低通滤

波器。当RC<

4.给出时域信号,求其直流分量。

5.给出一时域信号,要求写出频率分量,并写出其傅立叶变换级数。当波形经过低通

滤波器滤掉高次谐波而只保留一次谐波时,画出滤波后的输出波形。

6.有一时域信号S=V0sin(2pif0t)+V1cos(2pif1t)+V2sin(2pif3t+90),写出当其通过

低通、带通、高通滤波器后的信号表示方式。

7.给出一差分电路,告诉其输出电压Y+和Y,求共模分量和差模分量。

8.一电源和一段传输线相连(长度为L,传输时间为T),画出终端处波形,考虑传输

线无损耗。给出电源电压波形图,要求绘制终端波形图。

9.求锁相环的输出频率,给了一个锁相环的结构图。

10.给出一个堆栈的结构,求中断后显示结果,主要是考堆栈压入返回地址存放在低

端地址还是高端。

2003 Graphic笔试题目

1.问答题

(1)texture mapping是什么?为什么要用filter?

(2)用float和int表示一个数,比如2,说明优点和缺点,

(3)在MPEG哪部分可以加速硬件?

(4)解释cubic和B-spline的差别,写出各自函数。

(5)写出几个Win API中的OpenGL函数。

(6)说出固定小数表示和浮点小数表示的优缺点。

(7)说出显卡可以优化哪些MPEG中的计算?

(8)说出Bezier和B-Spline曲线的区别。

2.用最简单的方法判断一个数是否是2的指数次幂。

3.S23E8和S10E5两种浮点数表示方法分析,表示0.25写一个类S10E5,实现从S23E8转

换。

4.用模版的方式实现三个量取最大值。

5.题目告诉你IEEE 16和32浮点数表示的规范,要求将0.25分别用IEEE 16和

32表示并写一个C++函数将输入的IEEE 16表示转化为IEEE 32的表示。

6.用C语言写一个函数f(x) x * 0.5要求只能用整数操作。

2003 Software Engineer笔试题

1. Describe x86 PC’s architecture in a diagram cpu,core chipset, Cache,DR

AM, IO-subsystem, IO-Bus

2. SWI instruction is often called a “supervisor call”, describe the act

ions in detail

* Save the address of the instruction after the SWI in rl4_svc.

* Save the CPSR in SPSR_svc.

* Enter supervisor mode and disable IRQs.

* Set the PC to 08 and begin executing the instruction there.

3.

* What is PIO operation? advantage and disadvantage?

* DMA operation? advantage and disadvantage?

* Scatter/Gather DMA engine? how does it operate?

4. MP3 decoder related. (a flow chart of decoding is presented)

* advantages of Huffman encoding?

* why the aliasing reduction is necessary?

* analytical expression in mathematics of the IMDCT?

* which block in the flow chart is suitable for the software implementatio

n and which for the hardware? why?

5. Assembly codes -> C language (about 15 lines).

6. Graduation thesis description.

篇6:恒生电子笔试题

恒生电子笔试题

以下纯属参考,未必这么考

请大家一定要注意 oracle 数据库方面的知识

现在用人单位在 java 和 c的笔试上基本上难不倒我们但在一些对于数据库有比较高要求的软件企业,比如做金融很多时候,我们会有 oracle 数据库方面受挫,从而造成在薪资水平上受压制,甚至失去这个机会,

1.对于一个数据库表,可以有 1 个主键和 多 个外键。

2.为了防止一个用户的工作不适当的影响另一个用户,应该采取(c)

a完整控制 b,安全性控制 c,并发控制 d,访问控制

3.关系数据库中,实现实体之间的联系是通过表与表之间的(d)

a,公共索引 b,公共存储 c,公共元组 d,公共属性

4,sql 语言集数据查询,数据操纵,数据定义,数据控制功能与一体,充分体现了关系数据库语言的特点和优点。

5,触发器可以在 插入,删除或修改特定表中的数据 中的一种或几种操作发生时自动执行。

6,请列数据库编程中连接 sql server 数据库的三中不同技术:dsn,dsn-less,oledb

7,请举出实体间具有一对一,一对多,多对多联系的例子。

8,简要说明事务的原子性?事务的原子性指的是,事务中包含的程序作为数据库的逻辑工作单位,它所做的对数据修改操作要么全部执行,要么完全不执行。这种特性称为原子性。

事务的原子性要求,如果把一个事务可看作是一个程序,它要么完整的被执行,要么完全不执行。就是说事务的操纵序列或者完全应用到数据库或者完全不影响数据库。这种特性称为原子性。

假如用户在一个事务内完成了对数据库的更新,这时所有的更新对外部世界必须是可见的,或者完全没有更新。前者称事务已提交,后者称事务撤消(或流产) 。dbms必须确保由成功提交的.事务完成的所有操纵在数据库内有完全的反映,而失败的事务对数据库完全没有影响。

9,简要说明为什么存储过程执行速度比普通的 sql 更快而且减少网络流量?谁都知道存储过程是预编译的存储过程其实就是能完成一定操作的一组 sql 语句,只不过这组语句是放在数据库中的这里我们只谈 sql server。如果我们通过创建存储过程以及在 asp 中调用存储过程,就可以避免将 sql 语句同 asp 代码混杂在一起。这样做的好处至少有三个:

第一、大大提高效率。存储过程本身的执行速度非常快,而且,调用存储过程可以大大减少同数据库的交互次数。

第二、提高安全性。假如将 sql 语句混合在 asp 代码中,一旦代码失密,同时也就意味着库结构失密。

第三、有利于 sql 语句的重用。

应用题:0s

studentbaa

学号 姓名 性别 年龄 所在系

sno sname ssex sage sdept

courseb

课程编号 课程名 学分

cno cname ccredit

学号 课程编号 成绩

sno cno gradepr

1,查询所有学过课程“数据库”的学生姓名,并且按年龄从大到小排序select stu.sname stu.sage from student stucoursesc where stu.snosc.snoand sc.cnocourse.cno and course.cname‘数据库‘

2,查询平均分数为 85 以上的学生名单和平均得分select stu.sname from student stusc where stu.snosc.sno and avgsc.grade85

3,新增加一门 2 个学分的课程,编原理 课程编号为 1005 (char 型)insert into coursecnocnameccredit values‘1005’”编译原理” ,2fapos

4,在选修关系 sc 表中,建立序号和课程编号的唯一索引,

5,学生信息中,要增加身份证号码字段 类型为 char 长度 18 非空alter table student addcredit_id char18 not null;

6,删除 sc 表中学号已经不存在的记录delete from sc where sno not inselect maxrowid from sc group by snocnograde

7,写出 sql 语句得到下列结果

所在系 男生人数 女生人数 总人数

select sdeptcount from student group by ssex

所在系 15《年龄〈18 18〈年龄〈20 的人数 其他年龄的人数 总人数

第一题是综合题,

1、毕业后想从事什么样的工作,为什么?

2、你父母对你的教育上,哪些造就了你现在的个性特点?

3、你的技术专长是什么?

4、你的学习成绩怎样?拿过什么奖励金?

第二题是不定项选择题

1、给你一串出栈序列,判断栈至少长多少

2、给出先序中序判断后续

3、字符数组赋值问题,包括 for 循环和 memset 和另一个 dzero(好像是这个函数)

4、linux/Unix 中允许读写但不允许执行的命令(666 跟 777)

5、关于静态变量说法正确的是哪些

6、关于数据库中索引作用的题

7、进程的并发会影响数据一致性的(读脏数据等)

第三题填空题

1、操作系统进程高级通信有哪些方式

2、给出一段代码,问这段代码有什么问题(指针为赋初值)

3、给出 IP,求子网掩码和可分配的主机数

4、数据库中事务的四个特点(原子性、一致性、独立性/隔离性、持久性)

第四题数据库操作题

大致就是给出三个表,要求写 SQL 语句,包括视图建立,增删改查,SQL 函数应用等(一共 25 分,好多)

第五题用 C 或 JAVA 写一个五子棋程序

要求写一个函数,当一颗白棋落下的时候,判断白方是否五连珠,棋盘是 1313 大小,用数组 A 表示,0 表示空,1 表示白棋,2 表示黑棋

然后就是一道 20 分值的数据库的题目了,一个表里有三个字段,语言,数学,英语,三门课程的成绩分别为 70、80、58,要你写语句输出三门课程的成绩(不过成绩是要用优秀、及格、不及格来显示的)大于 80 分为优秀、60 分以上为及格、60 分以下为不及格。要求你写出设计的思路,然后再写语句。

最后一部分也是 20 分值的题,有两道题,任选一道,第一道是看程序填空的,考的是递归算法;第二道是用 JAVA 写的,实现折半查找。

篇7:电子商务英语笔试题

电子商务英语笔试题

(一) 词汇和语法(本大题共20小题,每小题1分,共20分)根据句子的意思选择一个正确的答案,答案标在答题纸上。

1.Flight nineteen from New York and Washington is now arriving at _____.

A. the two gate

B. gate two

C. the gate two

D. second gate

2.Since 1971 there have been two _____ in this city.

A. woman mayors

B. woman mayor

C. women mayor

D. women mayors

3.It rains _____ in Shanghai _____ in Beijing.

A. as often; than

B. more often; than

C. as oftener; as

D. much often; as

4.It _____ for two days and the field were all under water.

A. rained

B. had been raining

C. was raining

D. would have rained

5.A new type of computer is going to _____ next year.

A. turn out

B. being turned out

C. have turned out

D. turned out

6.Having the highest marks in his class,_____.

A. the college offered him a scholarship

B. a scholarship was offered him by the college

C. he was offered a scholarship by the college

D. a college scholarship was offered to him

7.He _____ in London by eleven o'clock, but he started too late.

A. should be

B. must have been

C. ought to have been

D. might have been

8.If you _____ that late movie last night, you wouldn't be sleepy now.

A. hadn't watched

B. didn't watch

C. haven't watched

D. wouldn't have watched

9.It is because English is useful _____.

A. why we study it hard

B. which we study hard

C. what we study hard

D .that we study it hard

10.We do not believe their nice words _____ intimidated by their bluster.

A. so aren't we

B. neither we are

C. we are not

D. nor are we

11.There are _____ benefits in the new system.

A. concise

B. precise

C. tangible

D. metal

12.The time has come for the company to _____ after years of rapid expansion.

A. consist

B. consider

C. consolidate

D. combine

13.It is important for university to keep _____ with the changes in science and technology.

A. step

B. stage

C. space

D. pace

14.Critics _____ the writer with a lack of originality.

A. criticized

B. charged

C. condemned

D. scolded

15.They have _____ themselves as dedicated social workers.

A. distinguished

B. seen

C. defined

D. differed

16.The plane is _____ to take off at 4.

A. enlisted

B. enrolled

C. prompted

D. scheduled

17.People will not believe a person who always _____.

A. magnifies

B. enlarges

C. broadens

D. exaggerates

18.You should sign a contract to make your job situation _____.

A. normal

B. common

C. regular

D. usual

19.All citizens in this nation are _____ to the law.

A. subject

B. object

C. exposed

D. dependent

20.Let's fix a _____ date for the next meeting.

A. infinite

B. plain

C. distinct

D. definite

(二)完型填空(本大题共10小题,每小题1分,共10分)从选择项中选择一个最适合短文的选项。答案标在答题纸上。

Human beings act in a different way from that of animals just because they can speak while animals cannot.___21___ the cleverest animals cannot do things which to us seem very ___22___ and which small children, as soon as they learn to talk, would be able to do.

A German scientist, who performed experiments for many years with big apes, found that his apes could ___23___ his sticks as stools to pull down bananas which they could not reach. But they only used the stick to get a banana when both the banana and the stick were ___24___ view at the same time. If the banana was in front of them and the stick was behind them, they could not use the stick. They could not keep the banana ___25___ enough in mind to look around and then pick up the stick and use it.

The ___26___ for this is clear. We have words for banana and stick which help us to think about these things when they are not in ___27___.Even a small child knowing the words “banana” and “stick” has an idea of their relationship and is able to think “stick” together with “banana” and to remember this long enough to pick the stick ___28___ behind and use it on the banana.

Unable to speak, animals cannot keep their knowledge of things ___29___ long. That's why they often interrupt one line of action to do something else and later forget it completely. Human beings, on the other hand, use ___30___ and are able to do one thing continuously.

21.A.If B. Even C. Though D. When

22.A.honest B. foolish C. simple D. evident

23.A.take B. hold C. regard D. use

24.A.in B. beyond C. for D. with

25.A.close B. alive C. long D. complete

26.A.reason B. answer C. truth D. thought

27.A.mind B. thought C. sight D. brain

28.A.in B. at C. around D. from

29.A.before B. for C. after D. since

30.A.knowledge B. language C. mind D. memory

(三)阅读理解(本大题共10小题,每小题2分,共20分)

阅读下面的短文,从A、B、C、D四个选择项中选出一个最佳答案填空,

答案标在答题纸上。

Passage 1

There is, perhaps, no other sport in the world quite so exciting as skiing. For those watching, it is a top beauty nothing else can match. For skiers, it is a wonderful personal experience, and a thrilling test of mind, muscle and nerves.

More and more Americans are discovering this thrill for themselves. Not long ago, skiing had no part in the American sport scene. If it were thought of at all, it was purely as a European sport. Then came the 1932 Winter Olympics at Lake Placid, New York. Americans got their first good look at skiing and made for the hills. Today ski trains make regular runs from our cities to the great, white outdoors.

In addition to joy and cheer and excitement, skiing offers something more. It is a sport less expensive and for the young, the act of skiing is often mastered in a very short time.

The special thrill of skiing is expressed by Buddy Werner.“It's all up to you,”he says.“No teammate can help. You're alone. It's against the snow, yourself. You're a brave fighter.”

31.Americans first understood and began skiing ______.

A. about 50 years

B. about 60 years ago

C. not long ago

D. in 1932

32.Besides giving us amusement and pleasure, skiing has some more virtues:______.

A. a sport cheaper and easier to learn

B. a sport fit for both men and women

C. a sport outside, though expensive

D. a sport both on snow and on water

33.According to Buddy Werner, the special thrill of skiing lies in the fact that ______.

A. nobody can help

B. you are skiing with teammates

C. you're skiing on the mountains

D. it can show you are brave

篇8:凹凸电子笔试题

1:一个函数如下

char *f

{

char a[5];

char b[5];

a[0]='a';

a[1]='b';

a[2]='c';

a[3]='d';

a[4]='e';

strcpy(b,a);

return b;

}

请问:一:该函数中用a作为一个字符串是否存在问题?

二、该函数返回的b是否可用,为什么?

2:函数如下

void f()

{

char *a;

a=(char*)malloc(5);

strcpy(a,“abc”);

a=“cde”;

free(a);

}

请问:该函数存在哪些问题?

篇9:电子软件笔试题

1. Select ONE of the following projects to discuss:

a. Signal Filtering: You are given a sampled realtime waveform consisting

of a sensor reading mixed with highly periodic impulses and high frequency noi

se.The desired output is the realtime filtered sensor signal with the impulses

and noise removed, and a readout of the impulse period. The FFT may not be us

ed.

b. Interrupt Processing.A headware register consisting of eight independen

t edge triggered latches is used to record external asynchronous interrupt req

uests. When any of the request bits are latched, a software interrupt is gener

ated. The software may read the latch to see which interrupt(s) occurred. Writ

ing a one to any latch bit will clear the latch. How does that software assure

that no interrupt request is ever missed?

c. User Interface: a prototype MP3 player interface consisting of a playli

st display and a few control buttons is given to you. How would you make the i

nterface “skinnable”,with user selected graphics, options, and control butto

n placement?

Each project description is incomplete. What questions would you ask to co

mpletely specify the project? What development tools would you prefer to use?

What algorithm /data structures/design would you use?

2. What program(s) have you coded for you own enjoyment (not part of a sch

ool project,not for pay). What type of software project would you most enjoy w

orking on?

3. Have you participated in a team programming project? What is the hardes

t part of programming as a team, as opposed to programming alone?

篇10:威盛公司软件C++工程师笔试题

威盛公司软件C++工程师笔试题

1.How good do you see yours programming skills?Please circle your answers

C: Fair/Good/Excellent

C++: Fair/Good/Excellent

2.Please estimate your programming experince:

How many lines of code are your biggest C Program ever written excluding thestandard linked library?

How many lines of code are your biggest C++ program ever written excluding the standard linked library?

3.Please explain the following terms

Data Encapsulation

Inheritance

Polymorphism

4.What is a virtual base class?How do you declare such a class?How would you use it in a design?

5.What is a template or container class?How do you declare such a class?

6.Which are the access control levels for C++ language?

7.What is RTTI?How do you achieve RTTI in your design?

8.What are the major differences between static and non-static member functions?

9.How do you call a regular member function from a static member function?

Please use psendo-code to provide your answer

10.How do you declare/define a type of pointer to a class member function?

Please use psendo-code to provide your answer

11.Please explain the following tyoes:

Here is a short lise of combinations and their meanings:

1.Reference-Can change the referenced object

2.Const-Reference

3.Const-Pointer-

4.Pointer-Const-

5.Const-Pointer-Const-

CFoo Instance

CFoo &ReferenceToInstance=Instance; //1

const CFoo &ConstReferenceToInstance=Instance; //2

const CFoo *pConstPointer=&Instance; //3

CFoo *const pPointerConst=&Instance; //4

const CF00 *const pPointerConst=&Instance; //5

12.What are top-down and bottom-up approach?How do you usually use them?

13.Please use pseudo-code to design a set of stack operations with template

14.Please use pseudo-code to design a set of double linked list operations with template

Optional Questions:(for extra credits)

15.Please write a unix makefile for Question13

16.Please explain these common sections:text,data,bss

威盛笔试试题软件

笔试题

dl-威盛software的试题

新闻业笔试题

C++笔试题

马士基笔试题

ASP.NET笔试题

管理方式笔试题

笔试题电路

思科笔试题

往年威盛电子笔试题(共10篇)

欢迎下载DOC格式的往年威盛电子笔试题,但愿能给您带来参考作用!
推荐度: 推荐 推荐 推荐 推荐 推荐
点击下载文档 文档为doc格式

相关文章

点击下载本文文档