APPLICATION是什么

APPLICATION是什么,第1张

APPLICATION是应用程序意思。

一、含义

n. 应用;申请;专心;应用程序。

二、用法

application的基本意思是“申请,申请表,申请书”,通常指非常正规、供有关部门考虑的书面“申请,请求”,常用于正式和书面语中。application也可作“实际应用,用途”“施用,敷用,涂抹”解。

I didn't receive an acknowledgement of my application.

我的申请,我还没有收到复信告知收悉。

The manager received twenty applications for the post.

经理收到了二十份求职申请书。

扩展资料

近义词:request、diligence、use、effort、relevance。

一、request

1、含义:n. 请求;要求。vt. 请求;要求。

2、举例

I will oblige any sincere request.

我会答应任何诚意的请求。

His answer to my request was a negative.

我的请求遭到了他的拒绝。

二、diligence

1、含义:n. 勤奋。

2、举例

Patience combined with diligence is necessary to success.

耐心结合勤奋是成功所必需的。

Diligence is often the door to success.

勤奋常会引向成功。

三、use

1、含义:n. 使用;用法;使用权;运用。v. 利用;对待;使用;<口>吸(烟);<口>服用(毒品)。

2、举例

The present phone boxes will go out of use next year.

现有的公共电话亭明年就不再使用了。

He exemplified the use of the word.

他举例证明那个词的用法。

四、effort

1、含义:n. 努力;努力的成果。

2、举例

They are making every effort to decrease the production cost.

他们正尽力减少生产成本。

All my efforts were fruitless.

我所有的努力都白费了。

五、relevance

1、含义:n. 中肯;关联;相关性。

2、举例

I don't see the relevance of your question.

我不懂你这个问题有什么意义。

His answer bore little relevance.

他的回答无关痛痒。

代码如下:

package 输出全部希腊字母

public class GreekAlphabet {

public static void main(String args[]) {

int startPosition = 0, endPosition = 0

char cSrart = 'α', cEnd = 'ω'

startPosition = (int) cSrart

endPosition = (int) cEnd

System.out.println("希腊字母表:")

System.out.println("小写:")

for (int i = startPosition i <= endPosition i++) {

char c = '\0'

c = (char) i

System.out.print(" " + c)

if ((i - startPosition + 1) % 10 == 0) {

System.out.println("")

}

}

System.out.println()

cSrart = 'Α'

cEnd = 'Ω'

startPosition = (int) cSrart

endPosition = (int) cEnd

System.out.println("大写:")

for (int i = startPosition i <= endPosition i++) {

char c = '\0'

c = (char) i

System.out.print(" " + c)

if ((i - startPosition + 1) % 10 == 0) {

System.out.println("")

}

}

}

}

结果:

希腊字母表:

小写:

 α β γ δ ε ζ η θ ι κ

 λ μ ν ξ ο π ρ ? σ τ

 υ φ χ ψ ω

大写:

 Α Β Γ Δ Ε Ζ Η Θ Ι Κ

 Λ Μ Ν Ξ Ο Π Ρ ? Σ Τ

 Υ Φ Χ Ψ Ω


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

原文地址: http://outofmemory.cn/yw/10992208.html

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

发表评论

登录后才能评论

评论列表(0条)

保存