当前位置:首页 » 编程软件 » 编译用户程序英语单词

编译用户程序英语单词

发布时间: 2022-11-21 02:13:11

编译程序是什么意思编译是什么意思

编译程序(Compiler,compiling program)也称为编译器,是指把用高级程序设计语言书写的源程序,翻译成等价的机器语言格式目标程序的翻译程序。

解释程序是一种语言处理程序,在词法、语法和语义分析方面与编译程序的工作原理基本相同,但在运行用户程序时,它直接执行源程序或源程序的内部形式(中间代码)。

(1)编译用户程序英语单词扩展阅读:

结构:

编译过程分为分析和综合两个部分,并进一步划分为词法分析、语法分析、语义分析、代码优化、存储分配和代码生成等六个相继的逻辑步骤。这六个步骤只表示编译程序各部分之间的逻辑联系,而不是时间关系。

编译过程既可以按照这六个逻辑步骤顺序地执行,也可以按照平行互锁方式去执行。在确定编译程序的具体结构时,常常分若干遍实现。对于源程序或中间语言程序,从头到尾扫视一次并实现所规定的工作称作一遍。每一遍可以完成一个或相连几个逻辑步骤的工作。

可以把词法分析作为第一遍;语法分析和语义分析作为第二遍;代码优化和存储分配作为第三遍;代码生成作为第四遍。反之,为了适应较小的存储空间或提高目标程序质量,也可以把一个逻辑步骤的工作分为几遍去执行。

㈡ 什么是编译程序

编译程序指将某一种程序设计语言写的程序翻译成等价的另一种语言的程序的程序, 称之为编译程序

编译程序也称为编译器,是指把用高级程序设计语言书写的源程序,翻译成等价的机器语言格式目标程序的翻译程序。编译程序属于采用生成性实现途径实现的翻译程序。

它以高级程序设计语言书写的源程序作为输入,而以汇编语言或机器语言表示的目标程序作为输出。编译出的目标程序通常还要经历运行阶段,以便在运行程序的支持下运行,加工初始数据,算出所需的计算结果。

编译程序的实现算法较为复杂,这是因为它所翻译的语句与目标语言的指令不是一一对应关系,而是一多对应关系,同时也因为它要处理递归调用、动态存储分配、多种数据类型,以及语句间的紧密依赖关系。

由于高级程序设计语言书写的程序具有易读、易移植和表达能力强等特点,编译程序广泛地用于翻译规模较大、复杂性较高、且需要高效运行的高级语言书写的源程序。

(2)编译用户程序英语单词扩展阅读:

编译流程分为了四个步骤:

1.预处理,生成预编译文件(.文件)

2.编译,生成汇编代码(.s文件)

3.汇编,生成目标文件(.o文件)

4.链接,生成可执行文件

㈢ 用C语言编写一个程序,用户输入一个两位数,然后显示该数的英文单词

#include<stdio.h>
main()
{
char words[3][10][10]={{"","eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen","eighteen","nineteen"}
,{"","","twenty","thirty","forty","fifty","sixty","seventy","eighty","ninety"}
,{"","one","two","three","four","five","six","seven","eight","nine"}};
int num;
start:
scanf("%d",&num);
if(num>99||num<10)printf("error\n");
else
{
if(num==10)printf("ten\n");
else if(num<20)printf("%s%\n",words[0][num-10]);
else{
printf("%s",words[1][num/10]);
if(num%10!=0)printf("-%s",words[2][num%10]);
printf("\n");
}
}
goto start;
}

编程序常用英语单词是什么

编程序常用英语单词部分:

1、Compile:编绎

2、Run:运行

3、Class:类

4、Object:对象

5、System:系统

6、out:输出

7、print:打印

8、line:行

9、variable:变量

10、type:类型

11、static:静态的

12、array:数组

13、parameter:参数

14、method:方法

15、function:函数

16、public:公有的

17、default:默认

18、get:得到

19、private:私有的

20、import:导入

21、set:设置

22、package:包

23、access:访问

24、protected:受保护的

25、void:无(返回类型)

26、operation:操作运算

27、member-variable:成员变量

28、member-function:成员函数

29、extends:继承 base class:基类 parent class:父类

30、interface:接口 child class:子类 super class:超类

31、overload:重载 abstract:抽象 exception:异常

32、implements:实现 Runtime:运行时

33、derived class:派生类

34、override:重写覆盖

35、final:最终的不能改变的

(4)编译用户程序英语单词扩展阅读

一、编程:设计具备逻辑流动作用的一种“可控体系”【注:编程不一定是针对计算机程序而言的,针对具备逻辑计算力的体系,都可以算编程。】

二、编程是编写程序的中文简称,就是让计算机代为解决某个问题,对某个计算体系规定一定的运算方式,使计算体系按照该计算方式运行,并最终得到相应结果的过程。

三、为了使计算机能够理解人的意图,人类就必须将需解决的问题的思路、方法和手段通过计算机能够理解的形式告诉计算机,使得计算机能够根据人的指令一步一步去工作,完成某种特定的任务。这种人和计算体系之间交流的过程就是编程。

㈤ 关于C语言程序设计中所有英语大全求解!

你需要什么英语大全,关键字就那么几个 int short long float double if else .....while for.....
还有就是些错误提示英文解释。:
TURBOC编译错误信息说明大全
#operator not followed by maco argument name
#运算符后没跟宏变元名

Ambiguous operators need parentheses
不明确的运算需要用括号括起

Ambiguous symbol ''xxx''
不明确的符号

Argument # missing name
参数#名丢失

Argument list syntax error
参数表语法错误

Array bounds missing
丢失数组界限符

Array size too large
数组尺寸太大

Assembler statement too long
汇编语句太长

Bad call of in-line function
内部函数非法调用

Bad character in paramenters
参数中有不适当的字符

Bad configuration file
配置文件不正确

Bad file name format in include directive
包含命令中文件名格式不正确

Bad ifdef directive synatax
编译预处理ifdef有语法错

Bad ifndef directive syntax
编译预处理ifndef指令语法错误

Bad undef directive syntax
编译预处理undef有语法错

Bit field too large
位字段太长

Call of non-function
调用未定义的函数

Call to function with no prototype
调用函数时没有函数的说明

Cannot modify a const object
不允许修改常量对象

Case outside of switch
Case 出现在switch外

Case statement missing
Case语句漏掉

Case syntax error
Case 语法错误

Character constant too long
字符常量太长

Code has no effect
代码不可述不可能执行到

Compound statement missing{
分程序漏掉"{"

Conflicting type modifiers
不明确的类型说明符

Constant expression required
要求常量表达式

Constant out of range in comparison
在比较中常量超出范围

Conversion may lose significant digits
转换时会丢失意义的数字

Conversion of near pointer not allowed
不允许转换近指针

Could not find file ''xxx''
找不到XXX文件

Declaration missing ;
说明缺少";"

Declaration needs type or storage class
说明必须给出类型或存储类

Declaration syntax error
说明中出现语法错误

Default outside of switch
Default 出现在switch语句之外

Define directive needs an identifier
编译预处理指令Define需要标识符

Division by zero
用零作除数

Do statement must have while
Do-while语句中缺少while部分

DO while statement missing (
Do while语句中漏掉了符号 "("

Do while statement missing;
Do while语句中掉了分号

Duplicate Case
Case情况不唯一

Enum syntax error
枚举类型语法错误

Enumeration constant syntax error
枚举常数语法错误

Error directive :xxx
错误的编译预处理命令

Error writing output file
写输出文件错误

Expression syntax error
表达式语法错误

Extra parameter in call
调用时出现多余参数

Extra parameter in call to xxxxxx
调用xxxxxxxx函数时出现了多余参数

File name too long
文件名太长

For statement missing )
For语名缺少")"

For statement missing(
For语句缺少"("

For statement missing;
For 语句缺少";"

Function call missing )
函数调用缺少右括号

Fuction definition out of place
函数定义位置错误

Fuction should return a value
函数必需返回一个值

Goto statement missing label
Goto语句没有标号

Hexadecimal or octal constant too large
16进制或8进制常数太大

If statement missing(
If语句缺少"("

If statement missing)
If语句缺少")"

Illegal character ''x''
非法字符x

Illegal initialization
非法的初始化

Illegal octal digit
非法的8进制数字

Illegal pointer subtraction
非法的指针相减

Illegal structure operation
非法的结构体操作

Illegal use of floating point
非法的浮点运算

Illegal use of pointer
指针使用非法

Improper use of a typedef symbol
类型定义符号使用不恰当

In-line assembly not allowed
不允许使用行间汇编

Incompatible storage class
存储类别不相容

Incompatible type conversion
不相容的类型转换

Incorrect commadn line argument:xxxxxx
不正确的命令行参数:xxxxxxx

Incorrect commadn file argument:xxxxxx
不正确的配置文件参数:xxxxxxx

Incorrect number format
错误的数据格式

Incorrect use of default
Default使用不当

Initializer syntax error
初始化语法错误

Invalid indirection
无效的间接运算

Invalid macro argument separator
无效的宏参数分隔符

Invalid pointer addition
指针相加无效

Irrecible expression tree
无法执行的表达式运算

Invalid use of dot
点使用错

Lvalue required is assigned a value
需要逻辑值0或非0值

Macro argument syntax error
宏参数语法错误

Macro expansion too long
宏的扩展太长

Mismatched number of parameters in definition
定义中参数个数不匹配

Misplaced break
此处不应出现break语句

Misplaced continue
此处不应出现continue语句

Misplaced decimal point
此处不应出现小数点xxx''

Misplaced else
此处不应出现else

Misplaced else directive
此处不应出现编译预处理else

Misplaced endif directive
此处不应出现编译预处理endif

Must be addressable
必须是可以编址的

Must take address of memory location
必须存储定位的地址

No declaration for function ''xxx''
没有函数xxx的说明

No file name ending
无文件终止符

No file names given
未给出文件名

No stack
缺少堆栈

No type information
没有类型信息

Non-portable pointer assignment
对不可移动的指针(地址常数)赋值

Non-portable pointer comparison
不可移动的指针(地址常数)比较

Non-portable pointer conversion
不可移动的指针(地址常数)转换

Non-protable return type conversion
不可移植的返回类型转换

Not a valid expression format type
不合法的表达式格式

Not an allowed type
不允许使用的类型

Numeric constant too large
数值常太大

Out of memory
内存不够用

Parameter ''xxx'' is never used
参数xxx没有用到

Pointer required on left side of ->
符号->的左边必须是指针

Possible use of ''xxx'' before definition
在定义之前就使用了xxx(警告)

Possibly incorrect assignment
赋值可能不正确

Redeclaration of ''xxx''
重复定义了xxx

Redefinition of ''xxx'' is not identical
xxx的两次定义不一致

Register allocation failure
寄存器寻址失败

Repeat count needs an lvalue
重复计数需要逻辑值

Size of structure or array not known
结构体或数组大小不确定

Statement missing ;
语句后缺少";"

Structure or union syntax error
结构体或联合体语法错误

Structure size too large
结构体尺寸太大

Subscripting missing ]
下标缺少右方括号

Superfluous & with function or array
函数或数组中有多余的"&"

Suspicious pointer conversion
可疑的指针转换

Switch statement missing (
switch 语句缺少"("

Switch statement missing )
switch 语句缺少")"

Symbol limit exceeded
符号超限

Too few parameters in call
函数调用参数太少

Too few parameter in call to'xxxxxx'
调用'xxxxxx'时参数太少

Too many cases
Cases太多

Too many decimal points
十进制小数点太多

Too many default cases
Default太多(switch语句中一个)

Too many exponents
阶码太多

Too many initializers
初始化太多

Too many error or warning messages
错误或警告信息太多

Too many storage classes in declaration
说明中存储类太多

Too many type in declaration
说明中类型太多

Too much auto memory in function
函数用到的自动存储太多

Too much global data defined in file
文件中全局数据太多

Two consecutive dots
两个连续的点

Type mismatch in parameter #
参数"#"类型不匹配

Type mismatch in parameter # in call to 'XXXXXXX'
调用'XXXXXXX'时参数#类型不匹配

Type mismatch in parameter xxx
参数xxx类型不匹配

Type mismatch in parameter 'YYYYYYYY' in call to 'YYYYYYYY'
调用'YYYYYYY'时参数'XXXXXXXX'数型不匹配

Type mismatch in redeclaration of ''xxx''
xxx重定义的类型不匹配

Unable to create output file ''xxx''
无法建立输出文件xxx

Unable to create turboc.lnk
不能创建turboc.lnk

Unable to execute command 'xxxxxxxx'
不能执行'xxxxxxxx'命令

Unable to open include file 'xxx'
无法打开被包含的文件xxx

Unable to open input file 'xxx'
无法打开输入文件xxx

Undefined label 'xxx'
没有定义的标号xxx

Undefined structure 'xxx'
没有定义的结构xxx

Undefined symbol 'xxx'
没有定义的符号xxx

Unexpected end of file in comment started on line xxx
源文件在从xxx行开始的注释中意外结束

Unexpected end of file in conditional started on line xxx
源文件在#行开始的条件语句中意外结束

Unknown assemble instruction
未知的汇编结构

Unknown option
未知的操作

Unknown preprocessor directive: ''xxx''
不认识的预处理命令xxx

Unreachable code
无路可达的代码

Untermimated character constant
未终结的字符常量

Unterminated string
未终结的串

Unterminated string or character constant
字符串或字符常量缺少引号

User break
用户强行中断了程序

Value required
赋值请求

Void functions may not return a value
Void类型的函数不应有返回值

While statement missing (
While语句漏掉 '('

While statement missing )
While语句漏掉 ')'

Wrong number of arguments in of 'xxxxxxxx'
调用'xxxxxxxx'时参数个数错误

'xxx' not an argument
xxx不是参数

'xxx' not part of structure
xxx不是结构体的一部分

xxx statement missing (
xxx语句缺少左括号

xxx statement missing )
xxx语句缺少右括号

xxx statement missing ;
xxx缺少分号

'xxx' declared but never used
说明了xxx但没有使用

'xxx' is assigned a value which is never used
给xxx赋了值但未用过

Zero length structure
结构体的长度为零

㈥ 程序员必须懂的英语单词词汇

干程序员这行实在是离不开英语,需要懂的 英语单词 有很多。下面是我整理的程序员必须懂的英语单词,以供大家学习参考。

程序员必须懂的英语单词

CPU(Center Processor Unit)中央处理单元

mainboard主板

RAM(random access memory)随机存储器(内存)

ROM(Read Only Memory)只读存储器

Floppy Disk软盘

Hard Disk硬盘

CD-ROM光盘驱动器(光驱)

monitor监视器

keyboard键盘

mouse鼠标

chip芯片

CD-R光盘刻录机

HUB集线器

Modem= MOlator-DEMolator,调制解调器

P-P(Plug and Play)即插即用

UPS(Uninterruptable Power Supply)不间断电源

BIOS (Basic-input-Output System)基本输入输出系统

CMOS(Complementary Metal-Oxide-Semiconctor)互补金属氧化物半导体

setup安装

uninstall卸载

wizzard向导

OS(Operation Systrem) 操作系统

OA(Office AutoMation)办公自动化

exit退出

edit编辑

复制

cut剪切

paste粘贴

delete删除

select选择

find查找

程序员常用英语单词

select all全选

replace替换

undo撤消

redo重做

program程序

license许可(证)

back前一步

next下一步

finish结束

folder文件夹

Destination Folder目的文件夹

user用户

click点击

double click双击

right click右击

settings设置

update更新

release发布

data数据

data base数据库

DBMS(Data Base Manege System)数据库管理系统

view视图

insert插入

object对象

configuration配置

command命令

document文档

程序员必备英语单词汇

POST(power-on-self-test)电源自检程序

cursor光标

attribute属性

icon图标

service pack服务补丁

option pack功能补丁

Demo演示

short cut快捷方式

exception异常

debug调试

previous前一个

column行

row列

restart重新启动

text文本

font字体

size大小

scale比例

interface界面

function函数

access访问

manual指南

active激活

computer language计算机语言

menu菜单

GUI(graphical user interfaces )图形用户界面

template模版

page setup页面设置

password口令

code密码

print preview打印预览

zoom in放大

zoom out缩小

pan漫游

cruise漫游

full screen全屏

tool bar工具条

>>>下一页更多“程序员必备英语单词”

㈦ 编写一个程序,由用户输入一个含有5个单词的英文句子,按照用户的要求输出句中

源码
==============CODE===============
#!usr/bin/perl
print "Please enter a sentence containing 5 words:\n";
$sentence = <STDIN>;
print "\nWhich word do you want to print?\nEnter a number from 1 to 5:\n";
$num = <STDIN>;
@words = split /\s+/, $sentence;
print "The word is:\t$words[$num-1]\n";
==============CODE===============

㈧ 电脑里常用的的英语有那些(汉语意思)

硬件类(Hardware)
软件类(Software)
网络类(Network)

CPU(Center Processor Unit)中央处理单元
mainboard主板
RAM(random access
memory)随机存储器(内存)
ROM(Read Only Memory)只读存储器
Floppy Disk软盘
Hard Disk硬盘
CD-ROM光盘驱动器(光驱)
monitor监视器
keyboard键盘
mouse鼠标
chip芯片
CD-R光盘刻录机
HUB集线器
Modem= MOlator-DEMolator,调制解调器
P-P(Plug and Play)即插即用
UPS(Uninterruptable Power Supply)不间断电源
BIOS(Basic-input-Output
System)基本输入输出系统
CMOS(Complementary Metal-Oxide-Semiconctor)互补金属氧化物半导体
setup安装
uninstall卸载
wizzard向导
OS(Operation Systrem)操作系统
OA(Office AutoMation)办公自动化
exit退出
edit编辑
复制
cut剪切
paste粘贴
delete删除
select选择
find查找
select all全选
replace替换
undo撤消
redo重做
program程序
license许可(证)
back前一步
next下一步
finish结束
folder文件夹
Destination Folder目的文件夹
user用户
click点击
double click双击
right click右击
settings设置
update更新
release发布
data数据
data base数据库
DBMS(Data Base Manege
System)数据库管理系统
view视图
insert插入
object对象
configuration配置
command命令
document文档
POST(power-on-self-test)电源自检程序
cursor光标
attribute属性
icon图标
service pack服务补丁
option pack功能补丁
Demo演示
short cut快捷方式
exception异常
debug调试
previous前一个
column行
row列
restart重新启动
text文本
font字体
size大小
scale比例
interface界面
function函数
access访问
manual指南
active激活
computer language计算机语言
menu菜单
GUI(graphical user
interfaces )图形用户界面
template模版
page setup页面设置
password口令
code密码
print preview打印预览
zoom in放大
zoom out缩小
pan漫游
cruise漫游
full screen全屏
tool bar工具条
status bar状态条
ruler标尺
table表
paragraph段落
symbol符号
style风格
execute执行
graphics图形
image图像
Unix用于服务器的一种操作系统
Mac OS苹果公司开发的操作系统
OO(Object-Oriented)面向对象
virus病毒
file文件
open打开
colse关闭
new新建
save保存
exit退出
clear清除
default默认
LAN局域网
WAN广域网
Client/Server客户机/服务器
ATM( Asynchronous
Transfer Mode)异步传输模式
Windows NT微软公司的网络操作系统
Internet互联网
WWW(World Wide Web)万维网
protocol协议
HTTP超文本传输协议
FTP文件传输协议
Browser浏览器
homepage主页
Webpage网页
website网站
URL在Internet的WWW服务程序上
用于指定信息位置的表示方法
Online在线
Email电子邮件
ICQ网上寻呼
Firewall防火墙
Gateway网关
HTML超文本标识语言
hypertext超文本
hyperlink超级链接
IP(Address)互联网协议(地址)
SearchEngine搜索引擎
TCP/IP用于网络的一组通讯协议
Telnet远程登录
IE(Internet Explorer)探索者(微软公司的网络浏览器)
Navigator引航者(网景公司的浏览器)
multimedia多媒体
ISO国际标准化组织
ANSI美国国家标准协会
able 能
activefile 活动文件
addwatch 添加监视点
allfiles 所有文件
allrightsreserved 所有的权力保留
altdirlst 切换目录格式
并能够解决更大范围内的磁盘问题
andotherinFORMation 以及其它的信息
archivefileattribute 归档文件属性
assignto 指定到
autoanswer 自动应答
autodetect 自动检测
autoindent 自动缩进
autosave 自动存储
availableonvolume 该盘剩余空间
badcommand 命令错
badcommandorfilename 命令或文件名错
batchparameters 批处理参数
binaryfile 二进制文件
binaryfiles 二进制文件
borlandinternational borland国际公司
bottommargin 页下空白
bydate 按日期
byextension 按扩展名
byname 按名称
bytesfree 字节空闲
callstack 调用栈
casesensitive 区分大小写
要求出现确认提示,在你想覆盖一个
centralpointsoftwareinc central point 软件股份公司
changedirectory 更换目录
changedrive 改变驱动器
changename 更改名称
characterset 字符集
checkingfor 正在检查
检查磁盘并显示一个状态报告
chgdrivepath 改变盘/路径
china 中国

chooseoneofthefollowing 从下列中选一项
clearall 全部清除
clearallbreakpoints 清除所有断点
clearsanattribute 清除属性
clearscommandhistory 清除命令历史
clearscreen 清除屏幕
closeall 关闭所有文件
codegeneration 代码生成
colorpalette 彩色调色板
commandline 命令行
commandprompt 命令提示符
compressedfile 压缩文件
配置硬盘,以为 MS-DOS 所用
conventionalmemory 常规内存
***ceptemptyones 拷贝目录和子目录,空的除外
拷贝设置了归档属性的文件
把文件拷贝或搬移至另一地方
把一个软盘的内容拷贝到另一个软盘上
diskette 复制磁盘
C拷贝M移动 O比 F搜索R改名 D删除 V版本 E浏览A属性 W写字 P打印 L列表
rightc 版权(c
创建DOS分区或逻辑DOS驱动器
createextendeddospartition 创建扩展DOS分区
在扩展DOS分区中创建逻辑DOS驱动器
createprimarydospartition 创建DOS主分区
createsadirectory 创建一个目录
创建,改变或删除磁盘的卷标
currentfile 当前文件
currentfixeddiskdrive 当前硬盘驱动器
currentsettings 当前设置
currenttime 当前时间
cursorposition 光标位置

defrag 整理碎片
dele 删去
删除分区或逻辑DOS驱动器
删除一个目录和所有的子目录及其中的所有文件
deltree 删除树
devicedriver 设备驱动程序
dialogbox 对话栏
directionkeys 方向键
directly 直接地
directorylistargument 目录显示变量
directoryof 目录清单
directorystructure 目录结构
diskaccess 磁盘存取
disk 磁盘拷贝
磁盘服务功能: C拷贝 O比较 F搜索R改卷名V校验 浏览E编缉M图 L找文件 N格式化
diskspace 磁盘空间
displayfile 显示文件
displayoptions 显示选项
displaypartitioninFORMation 显示分区信息
显示指定目录和所有目录下的文件
显示指定属性的文件
显示或改变文件属性
displaysorsetsthedate 显示或设备日期
以单色而非彩色显示安装屏信息
显示系统中已用和未用的内存数量
显示磁盘上所有文件的完整路径和名称
显示或改变当前目录
doctor 医生
doesn 不
doesntchangetheattribute 不要改变属性
dosshell DOS 外壳
doubleclick 双击
你想显示逻辑驱动器信息吗(y/n)?
driveletter 驱动器名
editmenu 编辑选单
emsmemory ems内存
endoffile 文件尾
endofline 行尾
enterchoice 输入选择
entiredisk 转换磁盘
environmentvariable 环境变量
esc esc
everyfileandsubdirectory 所有的文件和子目录
existingdestinationfile 已存在的目录文件时
expandedmemory 扩充内存
expandtabs 扩充标签
explicitly 明确地
extendedmemory 扩展内存
fastest 最快的
fatfilesystem fat 文件系统
fdiskoptions fdisk选项
fileattributes 文件属性
fileFORMat 文件格式
filefunctions 文件功能
fileselection 文件选择
fileselectionargument 文件选择变元
filesin 文件在
filesinsubdir 子目录中文件
fileslisted 列出文件
filespec 文件说明
filespecification 文件标识
filesselected 选中文件
findfile 文件查寻
fixeddisk 硬盘
fixeddisksetupprogram 硬盘安装程序
fixeserrorsonthedisk 解决磁盘错误
floppydisk 软盘
FORMatdiskette 格式化磁盘
FORMatsadiskforusewithmsdos 格式化用于MS-DOS的磁盘
FORMfeed 进纸
freememory 闲置内存
fullscreen 全屏幕
functionprocere 函数过程
graphical 图解的
graphicslibrary 图形库
groupdirectoriesfirst 先显示目录组
hangup 挂断
harddisk 硬盘
hardwaredetection 硬件检测
ha**een 已经
helpfile 帮助文件
helpindex 帮助索引
helpinFORMation 帮助信息
helppath 帮助路径
helpscreen 帮助屏
helptext 帮助说明
helptopics 帮助主题
helpwindow 帮助窗口
hiddenfile 隐含文件
hiddenfileattribute 隐含文件属性
hiddenfiles 隐含文件
howto 操作方式
ignorecase 忽略大小写
在常规和上位内存
incorrectdos 不正确的DOS
incorrectdosversion DOS 版本不正确
indicatesabinaryfile 表示是一个二进制文件
indicatesanasciitextfile 表示是一个ascii文本文件
insertmode 插入方式
请用scandisk,不要用chkdsk
inuse 在使用
invaliddirectory 无效的目录
is 是
kbytes 千字节
keyboardtype 键盘类型
labeldisk 标注磁盘
laptop 膝上
largestexecutableprogram 最大可执行程序
largestmemoryblockavailable 最大内存块可用
lefthanded 左手习惯
leftmargin 左边界
linenumber 行号
linenumbers 行号
linespacing 行间距
listbyfilesinsortedorder 按指定顺序显示文件
listfile 列表文件
listof 清单
locatefile 文件定位
lookat 查看
lookup 查找
macroname 宏名字
makedirectory 创建目录
memoryinfo 内存信息
memorymodel 内存模式
menubar 菜单条
menucommand 菜单命令
menus 菜单
messagewindow 信息窗口
microsoft 微软
microsoftantivirus 微软反病毒软件
microsoftcorporation 微软公司
mini 小的
modemsetup 调制解调器安装
molename 模块名
monitormode 监控状态
monochromemonitor 单色监视器
moveto 移至
multi 多
newdata 新建数据
newer 更新的
newfile 新文件
newname 新名称
newwindow 新建窗口
norton norton
nostack 栈未定义
noteusedeltreecautiously 注意:小心使用deltree
onlinehelp 联机求助
optionally 可选择地
or 或
pageframe 页面
pagelength 页长
在显示每屏信息后暂停一下
pctools pc工具
postscript 附言
prefixmeaningnot 前缀意即"不
prefixtoreverseorder 反向显示的前缀
presetche** 用前缀和放在短横线-后的开关(例如/-w)预置开关
pressakeytoresume 按一键继续
pressanykeyforfilefunctions 敲任意键执行文件功能
pressentertokeepthesamedate 敲回车以保持相同的日期
pressentertokeepthesametime 敲回车以保持相同的时间
pressesctocontinue 敲esc继续
pressesctoexit 敲键退出
pressesctoexitfdisk 敲esc退出fdisk
敲esc返回fdisk选项

㈨ 谁知道一些常用的电脑词汇的英文怎么说

电脑英语词汇表
access arm 磁头臂、存取臂
access time 存取时间
adder 加法器
address 地址
alphanumeric 字母数字的
analog computer 模拟计算机
analyst 分析员
area 区域
array 数组、阵列
assembler 汇编程序
automation 自动化
band 区
batch processing 成批处理
binary code 二进制码
binary digit 二进制位、二进制数字
bit 比特、二进制的一位
branch 分支、支线
brush 电刷
buffer storage 缓冲存储器
calculator 计算器
call instruction 呼叫指令
card punch 卡片穿孔机
card reader 卡片阅读机、读卡机
cell 单元
channel 通道、信道
character 字符
check digit 校验数位
circuit 电路、线路
to clear 清除、清零
clock 时钟
code 代码
to code 编码
coder 编码员、编码器
command 指令、命令
compiler 编译程序
computer language 计算机语言
console 控制台
control unit 控制部件、控制器
core storage、 core store 磁心存储器
counter 计数器
cybernetics 控制论
cycle 循环
data 数据
data processing 数据处理
debugging 调试
decision 制定
digit 数字、数位、位
digital computer 数字计算机
disc、 disk 磁盘
display unit 显示装置
drum 磁鼓
to edit 编辑
electronics 电子学
emitter 发射器
to encode 编码
to erase 擦除、清洗、抹除
feed 馈送、供给
to feed 馈送、供给
feedback 反馈
field 字段、信息组、域
file 文件
floppy disk 软磁盘
floppy disk drive 软磁盘机
flow chart 流程图
frame 帧
hardware 硬件
identifier 标识符
index 索引
information 信息
inline processing 内处理
input 输入
inquiry 询问
instruction 指令
integrated circuit 集成电路
to interpret 解释
item 项目、项
jump 转移
key 键、关键码
keyboard 键盘
latency time 等待时间
library 库、程序库
linkage 连接
to load 装入、寄存、写入、加载
location 存储单元
logger 登记器、记录器
loop 循环
machine language 机器语言
magnetic storage 磁存储器
magnetic tape 磁带
matrix 矩阵
memory 存储器
message 信息、报文
microcomputer 微型计算机
mole 组件、模块
monitor 监视器、监督程序、管程
nanosecond 毫微秒
network 网络、网
numeric、 numerical 数字的、数值的
octet 八位位组、八位字节
operator 操作员
optical character reader 光符阅读机
optical scanner 光扫描器
output 输出
overflow 溢出、上溢
panel 平板
parameter 参数、参量
perforator 穿孔机
peripheral equipment 外围设备、外部设备
personal computer 个人计算机
printed circuit 印制电路
printer 打印机
printout 打印输出
to process 处理
processing unit 处理部件
program 程序
to program 程序编制
programmer 程序设计员
programming 程序设计、程序编制
pulse 脉冲
punch 穿孔
to punch 穿孔
punched card、 punch card 穿孔卡片
punched tape、 punch tape 穿孔纸带
punch hole 孔、穿孔
random access 随机存取
to read 读
reader 阅读程序
reading 阅读
real time 实时
record、 register 记录
rendancy 冗余
routine 例行程序
selector 选择器、选择符
sentinel 标记
sequence 序列、顺序
sequential 顺序的
serial 串行的.连续的
shift 移位、移数
signal 信号
simulation 模拟
simulator 模拟器、模拟程序
software 软件、软设备
sort 分类、排序
sorter 分类人员、分类机、分类程序、排序程序
storage 存储器
to store 存储
subroutine、 subprogram 子程序
switch 开关
symbol 符号
symbolic language 符号语言
system 系统
tabulator 制表机
teleprinter 电传打字机
terminal 终端
terminal unit 终端设备
timer 时钟、精密计时器
time sharing 分时
timing 定时
track 磁道
transcer 传感器、翻译机
translator 翻译程序、翻译器
to update 更新
Winchester disk drive 温彻斯特磁盘机、硬盘机
working storage 工作存储器

CSS: Cascading Style Sheets,层叠格式表
DCD: Document Content Description for XML: XML文件内容描述
DTD: Document Type Definition,文件类型定义
HTML(HyperText Markup Language,超文本标记语言)
JVM: Java Virtual Machine, Java虚拟机
OJI: Open Java VM Interface,开放JAVA虚拟机接口
SGML: Standard Generalized Markup Language,标准通用标记语言
SMIL: Synchronous Multimedia Integrate Language(同步多媒体集成语言)
VRML:Virtual Reality Makeup Language,虚拟现实结构化语言
VXML(Voice eXtensible Markup Language,语音扩展标记语言)
XML: Extensible Markup Language(可扩展标记语言)
XSL: Extensible Style Sheet Language(可扩展设计语言)

CTI:Computer Telephone Integration,计算机电话综合技术
DBS: Direct Broadcast Satellite,直接卫星广播
DWDM: Dense WaveLength Division Multiplex,波长密集型复用技术
MMDS: Multichannel Multipoint Distribution Service,多波段多点分发服务
PCM: Pulse Code Molation,脉冲编码调制
PSTN(Public Switched Telephone Network,公用交换式电话网)
TAPI: Telephony Application Programming Interface,电话应用程序接口
TSAPI: Telephony Services Application Programming Interface,电话服务应用程序接口
WDM: WaveLength Division Multiplex,波分多路复用

ADSL: Asymmetric Digital Subscriber Line,不对称数字订阅线路
AH: Authentication Header,鉴定文件头
AMR(Audio/Modem Riser,音效/数据主机板附加直立插卡)
ARP(Address Resolution Protocol,地址解析协议)
ATM(Asynchronous Transfer Mode,异步传输模式)
BOD(Bandwidth On Demand,弹性带宽运用)
CBR(Committed Burst Rate,约定突发速率)
CCIRN: Coordinating Committee for Intercontinental Research Networking,洲际研究网络协调委员会
CCM(Call Control Manager,拨号控制管理)
CDSL: Consumer Digital Subscriber Line(消费者数字订阅线路)
CGI(Common Gateway Interface,通用网关接口)
CIEA: Commercial Internet Exchange Association,商业因特网交易协会
CIR(Committed Infomation Rate,约定信息速率)
CTS(Clear to Send,清除发送)
DBS-PC: Direct Broadcast Satellite PC(人造卫星直接广播式PC)
DCE: Data Circuit Terminal Equipment,数据通信设备
DES: Data Encryption Standard,数据加密标准
DMT: Discrete Multi - Tone,不连续多基频模式
DNS(Domain Name System,域名系统)
DOCSIS(Data Over Cable Service Interface Specifications,线缆服务接口数据规格)
DTE: Data Terminal Equipment,数据终端设备
EBR(Excess Burst Rate,超额突发速率)
ESP: Encapsulating Security Payload,压缩安全有效载荷
FDM: Frequency Division Multi,频率分离
Flow-control流控制
FRICC: Federal Research Internet Coordinating Committee,联邦调查因特网协调委员会
FTP(File Transfer Protocol,文件传输协议)
Ghost:(General Hardware Oriented System Transfer,全面硬件导向系统转移)
HDSL: High bit rate DSL,高比特率数字订阅线路
HTTP(HyperText Transfer Protocol,超文本传输协议)
ICMP(Internet Control Message Protocol,因特网信息控制协议)
IETF(Internet Engineering Task Framework,因特网工程任务组)
IKE: Internet Key Exchange,因特网密钥交换协议
IMAP4: Internet Message Access Protocol Version 4,第四版因特网信息存取协议
Internet(因特网)
IP(Internet Protocol,网际协议)
ISDN(Integrated Service Digital Network,综合服务数字网络)
ISOC: Internet Society,因特网协会
ISP(Internet Service Provider,因特网服务提供商)
LAN(Local Area Network,局域网)
LDAP: Lightweight Directory Access Protocol,轻权目录访问协议
LOM(LAN-on-Montherboard)
IAB: Internet Activities Board,因特网工作委员会
IETF: Internet Engineering Task Force,因特网工程作业推动
L2TP(Layer 2 Tunneling Protocol,二级通道协议)
LMDS: Local Multipoint Distributed System,局域多点分布式系统
MIME: Multipurpose Internet Mail Extension,多用途因特网邮件扩展协议
MNP: Microcom Networking Protocal
MODEM(Molator Demolator,调制解调器)
NAT(Network Address Translation,网络地址转换)
NC(Network Computer,网络计算机)
NDS: Novell Directory Service,Novell目录服务
NNTP: Network News Transfer Protocol,网络新闻传输协议
MSN: Microsoft Network,微软网络
OFDM(orthogonal frequency division multiplexing,直角频率部分多路复用)
P3P(Privacy Preference Project,个人私隐安全平台)
PDS: Public Directory Support,公众目录支持
PGP: Pretty Good Privacy,优良保密协议
PICS: Platform for Internet Content Selection,因特网内容选择平台
POF: Polymer Optical Fiber,聚合体光纤
POP3: Post Office Protocol Version 3,第三版电子邮局协议
PPTP: Point to Point Tunneling Protocol,点对点通道协议
RADSL: Rate Adaptive DSL,速率自适应数字订阅线路
RARP(Reverse Address Resolution Protocol,反向地址解析协议)
RDF: Resource Description Framework,资源描述框架
RSA(Rivest Shamir Adlemen,一种因特网加密和认证体系)
RTS(Request To Send,需求发送)
SIS: Switched Internetworking Services(交换式网络互联服务)
S/MIME: Secure MIME,安全多用途因特网邮件扩展协议
SNMP(Simple Network Management Protocol,简单网络管理协议)
SMTP(Simple Mail Transfer Protocol,简单邮件传输协议)
SKIP: Simple Key Exchange Internet Protocol,因特网简单密钥交换协议
SUA(Single User Account,单用户帐号)
TCP(Transmission Control Protocol,传输控制协议)
UART(Universal Asynchronous Receiver/Transmitter,通用异步接收/发送装置)
UDP(User Datagram Protocol,用户数据报协议)
ULS: User Location Service,用户定位服务
VOD: Video On Demand,视频点播
VPN: virtual private network,虚拟局域网
WWW(World Wide Web,万维网,是因特网的一部分)
参考资料:http://sl.iciba.com/html/2006/0718/23/88193_1.htm

热点内容
app什么情况下找不到服务器 发布:2025-05-12 15:46:25 浏览:714
php跳过if 发布:2025-05-12 15:34:29 浏览:467
不定时算法 发布:2025-05-12 15:30:16 浏览:131
c语言延时1ms程序 发布:2025-05-12 15:01:30 浏览:167
动物园灵长类动物配置什么植物 发布:2025-05-12 14:49:59 浏览:738
wifi密码设置什么好 发布:2025-05-12 14:49:17 浏览:150
三位数乘两位数速算法 发布:2025-05-12 13:05:48 浏览:399
暴风影音缓存在哪里 发布:2025-05-12 12:42:03 浏览:545
access数据库exe 发布:2025-05-12 12:39:04 浏览:632
五开的配置是什么 发布:2025-05-12 12:36:37 浏览:367