程序文字英语怎么说及英文单词
1. 编程序常用英语单词是什么
application 应用程式 应用、应用程序
application framework 应用程式框架、应用框架 应用程序框架
architecture 架构、系统架构 体系结构
argument 引数(传给函式的值)。叁见 parameter 叁数、实质叁数、实叁、自变量
array 阵列 数组
arrow operator arrow(箭头)运算子 箭头操作符
assembly 装配件
assembly language 组合语言
assert(ion) 断言
assign 指派、指定、设值、赋值 赋值
assignment 指派、指定 赋值、分配
assignment operator 指派(赋值)运算子 = 赋值操作符
associated 相应的、相关的 相关的、关联、相应的
associative container 关联式容器(对应 sequential container) 关联式容器
atomic 不可分割的 原子的
attribute 属性 属性、特性
audio 音讯 音频
A.I. 人工智慧 人工智能
background 背景 背景(用於图形着色)
后台(用於行程)
backward compatible 回溯相容 向下兼容
bandwidth 频宽 带宽
base class 基础类别 基类
base type 基础型别 (等同於 base class)
batch 批次(意思是整批作业) 批处理
benefit 利益 收益
best viable function 最佳可行函式 最佳可行函式
(从 viable functions 中挑出的最佳吻合者)
binary search 二分搜寻法 二分查找
binary tree 二元树 二叉树
binary function 二元函式 双叁函数
binary operator 二元运算子 二元操作符
binding 系结 绑定
bit 位元 位
bit field 位元栏 位域
bitmap 位元图 位图
bitwise 以 bit 为单元逐一┅
bitwise 以 bit 为单元进行复制;位元逐一复制 位拷贝
block 区块,区段 块、区块、语句块
boolean 布林值(真假值,true 或 false) 布尔值
border 边框、框线 边框
brace(curly brace) 大括弧、大括号 花括弧、花括号
bracket(square brakcet) 中括弧、中括号 方括弧、方括号
breakpoint 中断点 断点
build 建造、构筑、建置(MS 用语)
build-in 内建 内置
bus 汇流排 总线
business 商务,业务 业务
buttons 按钮 按钮
byte 位元组(由 8 bits 组成) 字节
cache 快取 高速缓存
call 呼叫、叫用 调用
callback 回呼 回调
call operator call(函式呼叫)运算子调用操作符
(同 function call operator)
candidate function 候选函式 候选函数
(在函式多载决议程序中出现的候选函式)
chain 串链(例 chain of function calls) 链
character 字元 字符
check box 核取方块 (i.e. check button) 复选框
checked exception 可控式异常(Java)
check button 方钮 (i.e. check box) 复选按钮
child class 子类别(或称为derived class, subtype) 子类
class 类别 类
class body 类别本体 类体
class declaration 类别宣告、类别宣告式 类声明
class definition 类别定义、类别定义式 类定义
class derivation list 类别衍化列 类继承列表
class head 类别表头 类头
class hierarchy 类别继承体系, 类别阶层 类层次体系
class library 类别程式库、类别库 类库
class template 类别模板、类别范本 类模板
class template partial specializations
类别模板偏特化 类模板部分特化
class template specializations
类别模板特化 类模板特化
cleanup 清理、善后 清理、清除
client 客端、客户端、客户 客户
client-server 主从架构 客户/服务器
clipboard 剪贴簿 剪贴板
clone 复制 克隆
collection 群集 集合
combo box 复合方块、复合框 组合框
command line 命令列 命令行
(系统文字模式下的整行执行命令)
communication 通讯 通讯
compatible 相容 兼容
compile time 编译期 编译期、编译时
compiler 编译器 编译器
component 组件 组件
composition 复合、合成、组合 组合
computer 电脑、计算机 计算机、电脑
concept 概念 概念
concrete 具象的 实在的
concurrent 并行 并发
configuration 组态 配置
connection 连接,连线(网络,资料库) 连接
constraint 约束(条件)
construct 构件 构件
container 容器 容器
(存放资料的某种结构如 list, vector...)
containment 内含 包容
context 背景关系、周遭环境、上下脉络 环境、上下文
control 控制元件、控件 控件
console 主控台 控制台
const 常数(constant 的缩写,C++ 关键字)
constant 常数(相对於 variable) 常量
constructor(ctor) 建构式 构造函数
(与class 同名的一种 member functions)
(v) 复制、拷贝 拷贝
(n) 复件, 副本
cover 涵盖 覆盖
create 创建、建立、产生、生成 创建
creation 产生、生成 创建
cursor 游标 光标
custom 订制、自定 定制
data 资料 数据
database 资料库 数据库
database schema 数据库结构纲目
data member 资料成员、成员变
2. 运行程序的英文单词是什么
run the programme
3. 用java 编写一个程序,接受用户输入的一段英文文字,统计出其中的字符个数、单词个数和句子的个数。
|public static void main(String[] args)
{
System.out.println("请输入英语片段,以';'结束:");
Scannerscanner = newScanner(System.in);
String str = "";
int dc = 0;
int zc = 0;
intjc= 0;
while(scanner.hasNext())
{
str = scanner.next();
zc += str.length();
dc++;
System.out.println(str);
if (str.contains("."))
{
jc+= 1;
}
if (str.contains(";"))
{
break;
}
}
// scanner.
System.out.println("单词个数为:" + dc);
System.out.println("字母数为:" + (zc - 1));
System.out.println("句数为:" +jc);
}
(3)程序文字英语怎么说及英文单词扩展阅读:
import java.io.*;
public class test
{ public static void main(String[] args) throws IOException
{ System.out.print("请输入一串字母:");
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String str=br.readLine();
int char1=0,letter=0,sentence=0;
for(int i=0;i<str.length();i++)
{
char ch = str.charAt(i);
if(ch!=' ')
{ char1++;
}
if(ch==' '||ch=='/n')
{ //有空格,加一单词
if(i!=0&&str.charAt(i-1)!=' ')
letter++;
}
if(ch=='?'||ch=='!'||ch=='.')
{ sentence++;
}
}
System.out.println("字符数:"+char1);
System.out.println("单词个数:"+letter);
System.out.println("句子数:"+sentence);
}
}
import java.io.*;
public class test
{ public static void main(String[] args) throws IOException
{ System.out.print("请输入一串字母:");
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String str=br.readLine();
int char1=0,letter=0,sentence=0;
for(int i=0;i<str.length();i++)
{
char ch = str.charAt(i);
if(ch!=' ')
{ char1++;
}
if(ch==' '||ch=='/n')
{ //有空格,加一单词
if(i!=0&&str.charAt(i-1)!=' ')
letter++;
}
if(ch=='?'||ch=='!'||ch=='.')
{ sentence++;
}
}
System.out.println("字符数:"+char1);
System.out.println("单词个数:"+letter);
System.out.println("句子数:"+sentence);
}
}
4. 编写一个程序,对于输入的一段英语文本,可以统计有多少个英语单词
String article = "hjvj fvads vdsav.cdsv.";
String regex = "[\\p{Punct}\\s]{1,}";
String s[] = article.split(regex);
System.out.println("单词总数:" + s.length);
【"hjvj fvads vdsav.cdsv."这里面是乱打的,,就是你回的英语文本】答
5. 自动行驶程序的英文单词怎么写
“自动行驶程序”
“Automatic driving program”
6. 求JAVA程序员编程应掌握的英语单词总结谢谢
你去找一本叫《java编程思想的书》,然后看英文版的,里面单词都整明白了·你就是王了
7. 编写Application程序,接受用户输入的一段英文文字后,输出其中的字符数、单词数和句子数
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("请输入:");
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
try {
String s = br.readLine();
int charCount =0;
int wordCount =0;
int sentenceCount =0;
Pattern p = Pattern.compile("[a-zA-Z]+");
Matcher m = p.matcher(s.toLowerCase());
while(m.find()){
wordCount++;
}
for(int i=0;i<s.length();i++){
char c = s.charAt(i);
if(c!=' '){
charCount++;
}
if(c=='?'||c=='!'||c=='.'){
sentenceCount++;
}
}
System.out.println("您输入的字符数为:"+charCount);
System.out.println("您输入的单词数为:"+wordCount);
System.out.println("您输入的句子数为:"+sentenceCount);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
8. 编程序常用英语单词是什么
编程序常用英语单词部分:
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:最终的不能改变的
(8)程序文字英语怎么说及英文单词扩展阅读
一、编程:设计具备逻辑流动作用的一种“可控体系”【注:编程不一定是针对计算机程序而言的,针对具备逻辑计算力的体系,都可以算编程。】
二、编程是编写程序的中文简称,就是让计算机代为解决某个问题,对某个计算体系规定一定的运算方式,使计算体系按照该计算方式运行,并最终得到相应结果的过程。
三、为了使计算机能够理解人的意图,人类就必须将需解决的问题的思路、方法和手段通过计算机能够理解的形式告诉计算机,使得计算机能够根据人的指令一步一步去工作,完成某种特定的任务。这种人和计算体系之间交流的过程就是编程。
9. “程序”的英文单词是什么啊
program. procere
10. 政策及程序英语单词怎样写
政策policy 程序procere, program都可以
希望采纳