求计算机编程简写单词

求计算机编程简写单词,第1张

PC:个人计算机Personal Computer ·CPU:中央处理器Central Processing Unit ·CPU Fan:中央处理器的“散热器”(Fan) ·MB:主机板Mo therBoard ·RAM:内存Random Access Memory,以PC-代号划分规格,如PC-133,PC-1066,PC-2700 ·HDD:硬盘Hard Disk Drive ·FDD:软盘Floopy Disk Drive ·CD-ROM:光驱Compact Disk Read Only Memory ·DVD-ROM:DVD光驱Digital Versatile Disk Read Only Memory ·CD-RW:刻录机Compact Disk ReWriter ·VGA:显示卡(显示卡正式用语应为Display Card) ·AUD:声卡(声卡正式用语应为Sound Card) ·LAN:网卡(网卡正式用语应为Network Card) ·MODM:数据卡或调制解调器Modem ·HUB:集线器 ·WebCam:网络摄影机 ·Capture:影音采集卡 ·Case:机箱 ·Power:电源 ·Moniter:屏幕,CRT为显像管屏幕,LCD为液晶屏幕 ·USB:通用串行总线Universal Serial Bus,用来连接外围装置 ·IEEE1394:新的高速序列总线规格Institute of Electrical and Electronic Engineers ·Mouse:鼠标,常见接口规格为PS/2与USB ·KB:键盘,常见接口规格为PS/2与USB ·Speaker:喇叭 ·Printer:打印机 ·Scanner:扫描仪 ·UPS:不断电系统 ·IDE:指IDE接口规格Integrated Device Electronics,IDE接口装置泛指采用IDE接口的各种设备 ·SCSI:指SCSI接口规格Small Computer System Interface,SCSI接口装置泛指采用SCSI接口的各种设备 ·GHz:(中央处理器运算速度达)Gega赫兹/每秒 ·FSB:指“前端总线(Front Side Bus)”频率,以MHz为单位 ·ATA:指硬盘传输速率AT Attachment,ATA-133表示传输速率为133MB/sec ·AGP:显示总线Accelerated Graphics Port,以2X,4X,8X表示传输频宽模式 ·PCI:外围装置连接端口Peripheral Component Interconnect ·ATX:指目前电源供应器的规格,也指主机板标准大小尺寸 ·BIOS:硬件(输入/输出)基本设置程序Basic Input Output System ·CMOS:储存BIOS基本设置数据的记忆芯片Complementary Metal-Oxide Semiconductor ·POST:开机检测Power On Self Test ·OS: *** 作系统Operating System ·Windows:窗口 *** 作系统,图形接口 ·DOS:早期文字指令接口的 *** 作系统 ·fdisk:“规划硬盘扇区”-DOS指令之一 ·format:“硬盘扇区格式化”-DOS指令之一 ·setupexe:“执行安装程序”-DOS指令之一 ·Socket:插槽,如CPU插槽种类有SocketA,Socket478等等 ·Pin:针脚,如ATA133硬盘排线是80Pin,如PC2700内存模块是168Pin ·Jumper:跳线(短路端子) ·bit:位(0与1这两种电路状态), 计算机数据最基本的单位 ·Byte:字节,等于8 bit(八个位的组合,共有256种电路状态),计算机一个文字以8 bit来表示 ·KB:等于1024 Byte ·MB:等于1024 KB ·GB:等于1024 MB

Firework:烟火

Firework

音标:英 [ˈfaɪəwɜːk]   美 [ˈfaɪərwɜːrk]

释义:烟火;爆竹;烟花;烟火;焰火

双语例句

The firework went off in a cascade of colour

烟火散开像一片五彩缤纷的瀑布。

These include parades, concerts, festivals, firework displays and ceremonies for new Canadian citizens 

这些活动包括游行、音乐会、节日、烟火表演和为新加拿大公民举行的仪式。

Children and fireworks don't mix 

孩子不宜玩烟火。

The sky was full of brightly coloured fireworks 

满天一片色彩绚丽的烟火。

When do the fireworks start 

什么时候开始放烟火?

There'll be fireworks when he finds out! 

他要是发觉了就会大发雷霆!

The skies above London were ablaze with a spectacular firework display 

伦敦上空礼花绽放,景象壮观。

The boys were letting off fireworks 

那些男孩在放花炮。

On the night of the fireworks we had a really good spot 

观看焰火表演的那天晚上,我们找了一个非常好的位置。

It is given a typically thoughtful production with just enough theatrical fireworks 

该剧在制作上一如既往地花费了心思,舞台演出效果也相当精彩。

undeploy 是未部署的意思有道上没有翻译不过通过查网页得出了这个和制作动态页面的程序单词有关

你可以看看这个:

>

#include<stdioh>

#include<stdlibh>

#include<stringh>

struct word //定义一个word的结构体,里面的两个成员分别放英语单词和相应的汉语翻译

{

char chinese[20];

char english[20];

};

int point=0; //统计分数的

int count1=0; //测试的次数

void tianjia(struct word str[100],int &count); //函数声明,往词库中添加词组

void shuchu(struct word str[100],int &count); //函数声明,输出词库中所有的词组

void fanyi1(struct word str[100],int &count); //函数声明,输入汉语,对英语翻译的考察

void fanyi2(struct word str[100],int &count);

void chaxun(int point,int count1); //函数声明,输出成绩!

void main()

{

int count=0;

struct word str[100]; //定义一个结构体数组str

int n;

char ch,chioch;

while(1)

{

printf("背单词系统\n");

printf("1,添加词库\n");

printf("2,汉译英\n");

printf("3,英译汉\n");

printf("4,输出所有词库\n");

printf("5,成绩查询\n");

printf("0,退出\n");

printf("\n");

printf("请输入你要经行的 *** 作:\n");

scanf("%d",&n);

switch(n)

{

case 1:tianjia(str,count);break; //函数调用

case 2:fanyi1(str,count);break; //函数调用

case 3:fanyi2(str,count);break; //函数调用

case 4:shuchu(str,count);break;

case 5:chaxun(point,count1);break; //函数调用

case 0:{printf("你确认要退出吗?y/n!!\n");

scanf("%c%c",&ch,&chioch);

if(ch=='y'||ch=='Y') exit(0);

}

default :printf("你输入了错误的 *** 作,无法执行!!!");

exit(0);

}

}

}

void tianjia(struct word str[100],int &count) //往词库中添加词组

{

char ch;

do{

printf("录入词库!!!\n");

printf("请输入词库中的英语单词:\n");

scanf("%s",str[count]english);

printf("\n请输入相应的中文意思:\n");

scanf("%s",str[count]chinese);

count++;

printf("是否继续录入?y/n!!!\n");

scanf("%s",&ch);

}while(ch=='y');

printf("%d\n\n",count);

}

void shuchu(struct word str[100],int &count) // 输出词库中所有的词组

{

int i=0;

printf("输出词库中所有的单词!!!\n");

if(count<=0) {printf("没有任何单词,无法输出!!!\n");return;}

else {

for(i=0;i<count;i++){

printf("英文单词是:%s",str[i]english);

printf("\n相应的中文意思是:%s",str[i]chinese);

printf("\n\n");

}

printf("词库所有单词输入完毕!!!!\n");

}

}

void fanyi1(struct word str[100],int &count) //输入汉语,对英语翻译的考察

{

int i;

char ch[20];

char bh[20];

printf("请输入英语单词:\n");

scanf("%s",ch);

printf("请输入翻译后的中文:\n");

scanf("%s",bh);

for(i=0;i<count;i++)

{

if(strcmp(ch,str[i]english)==0)

{

if(strcmp(bh,str[i]chinese)==0)

{

point++;

count1++;

printf("恭喜你!!答对了!!!\n");

}

else

{

count1++;

printf("很遗憾,答错了!!!正确的翻译是:%s\n",str[i]chinese);

}

}

}

}

void fanyi2(struct word str[100],int &count) //输入英语,对汉语翻译的考察

{

int i;

char ch[20];

char bh[20];

printf("请输入中文:\n");

scanf("%s",ch);

printf("请输入翻译后的英文:\n");

scanf("%s",bh);

for(i=0;i<count;i++)

{

if(strcmp(ch,str[i]chinese)==0)

{

if(strcmp(bh,str[i]english)==0){

point++;

count1++;

printf("恭喜你!!答对了!!!\n");

}

else

{

count1++;

printf("很遗憾,答错了!!!正确的翻译是:%s\n",str[i]english);

}

}

}

}

void chaxun(int point,int count1)

{

printf("本次测试的成绩是:\n");

printf("总共:%d个\n",count1);

printf("正确:%d个\n",point);

// printf("正确率为:%d\%\n",point100/count1);

}

以上就是关于求计算机编程简写单词全部的内容,包括:求计算机编程简写单词、Firework单词什么意思、这个单词什么意思等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zz/10134909.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存