英文数字1-100

英文数字1-100
英文数字1-100

英文数字表达法

1 one

2 two

3 three

4 four

5 five

6 six

7 seven

8 eight

9 nine 10 ten 11 eleven 12 twelve 13 thirteen 14 fourteen 15 fifteen 16 sixteen 17 seventeen 18 eighteen 19 nineteen

20 twenty 21 twenty-one 22 twenty-two 23 twenty-three

30 thirty 40 forty 50 fifty 60 sixty 70 seventy 80 eighty

90 ninety 100 one hundred 101 one hundred and one

122 one hundred and twenty-two

英文数字表达法

1 one

2 two

3 three

4 four

5 five

6 six

7 seven

8 eight

9 nine 10 ten 11 eleven 12 twelve 13 thirteen 14 fourteen 15 fifteen 16 sixteen 17 seventeen 18 eighteen 19 nineteen

20 twenty 21 twenty-one 22 twenty-two 23 twenty-three

30 thirty 40 forty 50 fifty 60 sixty 70 seventy 80 eighty

90 ninety 100 one hundred 101 one hundred and one

122 one hundred and twenty-two

英文数字表达法

1 one

2 two

3 three

4 four

5 five

6 six

7 seven

8 eight

9 nine 10 ten 11 eleven 12 twelve 13 thirteen 14 fourteen 15 fifteen 16 sixteen 17 seventeen 18 eighteen 19 nineteen

20 twenty 21 twenty-one 22 twenty-two 23 twenty-three

30 thirty 40 forty 50 fifty 60 sixty 70 seventy 80 eighty

90 ninety 100 one hundred 101 one hundred and one

122 one hundred and twenty-two

英语数字表达及读法大全

1. Figure数字的读法 ①3—5位数的读法 202读作:two hundred(and)two 234读作:two hundred(and)thirty-four 1, 234读作:one thousand two hundred(and)thirty four 但是在读法上须注意以下几点: (a).在英式英语中,一个数的最后两位(十位和个位)得用“and\'’,但美式英语中则不用。如:3,077读作:U.S:three thousand seventy—seven. (b).不定冠词“a”只在数的开头才和hundred,thousand等连用。试比较: 146读作:ahundred(and)forty-six 2,146读作:twothousand,one hundred(and)forty six (c).1,000这个整数我们说athousand,在and前我们也说a thousand,但是在一个有百位数的数目前就得说one thousand 试比较: 1,031读作:a thousand,(and)thirty-one, 1,150读作:one thousand,one hundred(and)fifty (d).hundred,thousand和million这几个词的单数可以和:“a”者“one”连用,但是不能单独使用。在非正式文体中“a”比较常见;当我们说话比较准确的时候就用“one” 试比较: I Want to live for a hundred years. The journey took exactly one hundred days. (e).我们常常说eleven hundred(1,100),twelve hundred(1,200)等,而不说one thous and one hundred.从1,100到1,900之间的整数,这种说法最常见。 ?5位数以上的读法 以一组13位数字为单位的阿拉伯数字1234567891234为例,用英语和汉语表达时,前者按下标分段记号(,)为单位朗读,后者按上标分段记号(’)为单位朗读。 英语朗读法(以下面逗号为分割点): 1,234,567,891,234 one trillion two hundred and thirty-four billion five hundred and sixty-seven million eight hundred and ninety-one thousand two hundred and thirty-four

数字转为英文大写

'****************' Main Function *'**************** Function SpellNumber(ByVal MyNumber) Dim Yuan, Fen, Temp Dim DecimalPlace, Count ReDim Place(9) As String Application.Volatile True Place(2) = " Thousand " Place(3) = " Million " Place(4) = " Billion " Place(5) = " Trillion " ' String representation of amount MyNumber = Trim(Str(MyNumber)) ' Position of decimal place 0 if none DecimalPlace = InStr(MyNumber, ".") 'Convert Fen and set MyNumber to Yuan amount If DecimalPlace > 0 Then Fen = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & "00", 2)) MyNumber = Trim(Left(MyNumber, DecimalPlace - 1)) End If Count = 1 Do While MyNumber <> "" Temp = GetHundreds(Right(MyNumber, 3)) If Temp <> "" Then Yuan = Temp & Place(Count) & Yuan If Len(MyNumber) > 3 Then MyNumber = Left(MyNumber, Len(MyNumber) - 3) Else MyNumber = "" End If Count = Count + 1 Loop Select Case Yuan Case "" Yuan = "No Yuan" Case "One" Yuan = "One Yuan" Case Else Yuan = Yuan & " Yuan" End Select Select Case Fen Case "" Fen = " and No Fen" Case "One" Fen = " and One Fen" Case Else Fen = " and " & Fen & " Fen" End Select

英语数字表达方式大全

英语数字表达方式大全 0 nought;zero; 1 one 2 two 3 three 4 four 5 five 6 six 7 seven 8 eight 9 nine 10 ten 11 eleven 12 twelve 13 thirteen 14 fourteen 15 fifteen 16 sixteen 17 seventeen 18 eighteen 19 nineteen 20 twenty 21 twenty-one 22 twenty-two 23 twenty-three 30 thirty 32 thirty-two 40 forty 50 fifty 60 sixty 70 seventy 80 eighty 90 ninety 100 one hundred 101 one hundred and one 156 one hundred and fifty-six 192 one hundred and ninty-two 200 two hundred 300 three hundred 400 four hundred 500 five hundred 600 six hundred 700 seven hundred 800 eight hundred 900 nine hundred 1,000 one thousand 1,001 one thousand and one 1,300 thirteen hundred;one thousand and three hundred 2,000 two thousand 2,034 two thousand and thirty-four 6,502 six thousand five hundred and two 38,000 thirty-eight thousand 45,672 forty-five thousand six hundred and seventy-two 500,000 five hundred thousand 1,000,000 one million 3,123,400 three million,one hundred and twenty-three thousand and four hundred 8,000,000 eight million 47,000,000 forty-seven million

VB将数字翻译成英文

下面是一个将阿拉伯数字转换成英文说法的VB代码,源程序默认将小数点后面也翻译成英文 附源代码: '****************' Main Function *'**************** Function SpellNumber(ByVal MyNumber) Dim Dollars, Cents, Temp Dim DecimalPlace, Count ReDim Place(9) As String Application.Volatile True Place(2) = " Thousand " Select Case Cents Case """" Place(3) = " Million " Place(4) = " Billion " Place(5) = " Trillion " ' String representation of amount MyNumber = Trim(Str(MyNumber)) ' Position of decimal place 0 if none DecimalPlace = InStr(MyNumber, ".") 'Convert cents and set MyNumber to dollar amount If DecimalPlace > 0 Then Cents = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & "00", 2)) MyNumber = Trim(Left(MyNumber, DecimalPlace - 1)) End If Count = 1 Do While MyNumber <> "" Temp = GetHundreds(Right(MyNumber, 3)) If Temp <> "" Then Dollars = Temp & Place(Count) & Dollars If Len(MyNumber) > 3 Then MyNumber = Left(MyNumber, Len(MyNumber) - 3) Else MyNumber = "" End If Count = Count + 1 Loop Select Case Dollars Case "" Dollars = "No Dollars" Case "One" Dollars = "One Dollar" Case Else Dollars = Dollars & " Dollars" End Select

关于英语数字的读法

这些数字用英语怎么读? 1996年 nineteen ninety-six 20世纪70年代末 at the end of seventy years ,twenty century 5分之4 four fifths 0.8 1、zero point eight 2、point eight 3、eight tenths a billion and 335million and 26thousand 3hundred and sixty-nine。 269870041003。66 2hundred and sixty-nine billion and 8hundred and seventy million and fourty-one thousand and three piont six six

75% seventy-five percent 超过/低于75.30% over/lower seventy-five piont three zero percent 还有年月日 比如1990年12月5日星期六的读法 年year 月month 日day 比如说1990年12月5日星期六,那就是year of nineteen ninety December 5th saturday. 三位以上的数字英语怎么读? 学过100百以内数字的念法后,我们来看看3位以上的数字又该如何念吧。其实除了thousand(千), million(百万), billion(十亿) 这几个是新词,其他就是把之前所学的拼凑起来罢了,但是数字一多人就容易犯晕,所以大家要细心一点哟!一、3-4位数的读法 先说“几百”,后加"and",再加“末两位数”或“末位数”。202读作:two hundred and two

EXCEL 中如何将数字转换成英文

一、网上下载的代码 1.创建一个模块: 在SHEET上,右键-》查看代码。选中“模块”-》插入模块。 2.写代码: Option Explicit Dim StrNO(19) As String Dim Unit(8) As String Dim StrTens(9) As String Public Function NumberToString(Number As Double) As String Dim Str As String, BeforePoint As String, AfterPoint As String, tmpStr As String Dim Point As Integer Dim nBit As Integer Dim CurString As String Dim nNumLen As Integer Dim T As String Call Init Str = CStr(Round(Number, 2)) ' Str = Number If InStr(1, Str, ".") = 0 Then BeforePoint = Str AfterPoint = "" Else BeforePoint = Left(Str, InStr(1, Str, ".") - 1) T = Right(Str, Len(Str) - InStr(1, Str, ".")) If Len(T) < 2 Then AfterPoint = Val(T) * 10 If Len(T) = 2 Then AfterPoint = Val(T) If Len(T) > 2 Then AfterPoint = Val(Left(T, 2)) End If If Len(BeforePoint) > 12 Then NumberToString = "Too Big." Exit Function End If Str = "" Do While Len(BeforePoint) > 0 nNumLen = Len(BeforePoint) If nNumLen Mod 3 = 0 Then CurString = Left(BeforePoint, 3)

英语中的数字表达方法

英语数字 1.基本数字: (1) 大数: 英语和汉语读数方法的不同使得听音时不能及时反应出实际数字,在日常生活和考试中都会造成一定的麻烦。要想快速准确进行数字对应,首先要弄清两种数字系统的对应关系: 千亿hundred billion 百亿ten billion 十亿billion 亿hundred million 千万ten million 百万million 十万hundred thousand 万ten thousand 千thousand 百hundred 十ten 个one 通过比较我们可以看出,汉语中每位数字都有单独的名称,而英语中只有个,十,百,千,百万和十亿位的数字名称,每个数位的大小均以3位数表示。 如上图数字读作:three hundred twenty five billion, eight hundred sixty seven million, one hundred thirty four thousand and five hundred twenty nine. 掌握数字中的分节号“,”对掌握这种对应关系很有帮助,每个“,“左面恰好是英语数字的一个数位名称thousand, million and billion,在汉语中分别是:千,百万和十亿.

请大家试读以下数字: 13,625,004,069 32,006,080,005 Answer: Thirteen billion, six hundred (and) twenty-five million, four thousand and sixty nine. Thirty two billion, six million, eighty thousand and five. (2)分数 分子用基数词,即one, two, three, four…,分母用序数词,即first, second, third, fourth…,分数线不读。 1/3 one third 5/8 five eighths. 分子大于1,分母用复数。 1/4 one quarter 3/4 three quarters (3) 小数 小数点读成point. 0.35 zero point thirty-five; nought point thirty-five; point thirty-five (4) teen vs ty 听力中经常出现十几和几十的辩音。teen是长音,并且有明显的n鼻音,而几十ty是短音,且无任何鼻音。若在考试过程中未能分清,则猜几十ty。https://www.360docs.net/doc/ac597301.html, 2. 电话号码: (1)电话号码中的0比较特殊,可读作:zero, nought, null, nil, nothing, oh. Nought在考试中用的比较多,经常会听到nought point 3,(0.3)

整数的每位数字转换成英文实验

实验内容 题目描述 请把输入整数的每位数字转换成英文。如当输入1024时,输出:one, zero, two, four 输入,输入为一个整数 输出,按整数每一位输出其英文单词,单词间用逗号加空格分隔,单词由小写字母组成。样例输入 20345 样例输出 two, zero, three, four, five 提示 注意:大家要考虑数据为“0”的情况,此时如果取对0取对数会出错 源代码:: #include #define N 200 int main() { int n,k,j,s; int a[N]; scanf("%d",&n); j=0; s=0; while(n!=0) { k=n%10; n=n/10; a[j]=k; j++; s=s+j; } for(j=s-1;j>0;j--) { switch(a[j]) { case 0: printf("zero,");break; case 1: printf("one,");break; case 2: printf("two,");break; case 3: printf("three,");break; case 4: printf("four,");break; case 5: printf("five,");break; case 6: printf("six,");break; case 7 : printf("seven,");break;

case 8 : printf("eight,");break; case 9 : printf("nine,");break; } } switch(a[0]) { case 0: printf("zero");break; case 1: printf("one");break; case 2: printf("two");break; case 3: printf("three");break; case 4: printf("four");break; case 5: printf("five");break; case 6: printf("six");break; case 7 : printf("seven");break; case 8 : printf("eight");break; case 9 : printf("nine");break; } return 0; }

英语数字表达法汇总

英语数字表达法汇总2018 一、数位与关键数字 汉语数字分段法: 第一段位个十百千 第二段位万十万百万千万 第三段位亿十亿百亿千亿 第四段位兆(万亿) 英语数字分段法: 第一段位One Ten Hundred 第二段位Thousand Ten thousand Hundred thousand 第三段位Million Ten million Hundred million 第四段位Billion Ten billion Hundred billion 第五段位Trillion 英文数字用逗号隔开,有一个逗点读“thousand”;两个逗点读“million”;三个逗点读“billion”每个逗点区间由三位数组成,即百、十、千。因此,英文数字中的第四位数、第七位数、第十位数是很关键的数位。 Examples: 1,234 读作:one thousand, two hundred and thirty-four 4,567,809 读作:four million, five hundred and sixty-seven thousand, eight hundred and nine 5,678,120,000 读作:five billion, six hundred and seventy-eight million, one hundred and twenty thousand 其中,个别英美数字读法有差异。如:部分有一个逗点的数字(四位数),英国人用“thousand”表示,而美国人则多用“hundred”。再如,有三个逗点的数字(十位数),美式读法为“billion”,而英式读法为“thousand million”。因此,熟悉英美两种不同的读法对消除数字理解上的歧义是十分必要的。例词 英式1,900 one thousand, nine hundred 美式1,900 nineteen hundred 英式4,000,000,000 four thousand million 美式4,000,000,000 four billion 再者,英国英语在百位和十位之间加读“and”,而美国英语往往不用“and”。比如754这个数字。英国英语读成seven hundred and fifty-four,而美国英语则读为seven hundred fifty-four。此外,在某些时间表达上,英美也有不同的读法。 二、分数、小数、百分数的读法 (一)分数词是由基数词的序数词合成的,分子用基数词表示,分母用序数词表示, 除了分子是"1"的情况外,序数词都要用复数形式。 Examples: 1/3 读作:one-third 7/12 读作:seven-twelfths

各类英文数字的表达描述

英语中“年份、日期、时间、数字、温度、门牌号码”的读法 1.年份 关于四位数年份的读法有下列几种情形: 1)一般情况下,将表示年份的四个数字按前后分为两组,每一组的数字都按基数词来读。例如: 1865年读作eighteen sixty-five 1998年读作nineteen ninety-eight 2)如果前两个数字为非“零”数字,后两位数分别为“零”,则先读出前两位数,然后将后面的两个“零”读为hundred。例如: 1900年读作nineteen hundred 1800年读作eighteen hundred 3)第三个数字为“零”(其他数字不是“零”)的年份的读法应当将该“零”读为O[u]。例如: 1809年读作eighteen O nine 4)关于千年的一些读法。 2000年读作two thousand 2008年读作two thousand and eight(或twenty O eight) 1008年读作one thousand and eight(或ten O eight) 另外,还有一些非四位数的年份,它们有两种读法:一种是按照基数词的方法来读,另一种是一个一个数字来读。例如:

531BC读作five three one BC(或five hundred and thirty-one BC) since the “1950s”译作:在20世纪50“年代”之后 2.日期 英语日期的读法、写法和汉语不同,要注意区别。英语中年、月、日的表达方法是“月份+序数词,年”。2001年4月2日应该写成:April 2nd, 2001,读成:April the second, two thousand and one。一般情况下,序数词是在基数词后加-th,但有几种特殊情况,可按下面规律来记:1、2、3单独记(即first, second, third),8后少t,9少e(即:eighth, ninth),5、12变ve为fth(即fifth, twelfth),整十位数变y为ie再加th(如twentieth),二位以上只将个数变序数词(如thirty-second)。 例如: October 31(October 31st)读作October(the)thirty-first August 26(August 26th)读作August(the)twenty-sixth 日期的表达英式和美式有所不同,请注意区别。 在日期的写法上,英式先写日子,美式先写月份。 英1999年4月6日=6th April l999 美1999年4月6日=April 6,1999 在读法上,英国人有两种表达方式: 1.April the sixth,nineteen ninety-nine 2.The sixth of April,nineteen ninety-nine 美国人则一般这样表示:April sixth,nineteen ninety-nine(省略“the") 3.时间 时间的读法有以下一些特点: 1)可以直接按照表示时间的数字来读。例如: 10:56读作ten fifty six 8:30读作eight thirty 2)正点后的前半小时,通常说几点“过”(past)几分。例如:

英语数字换算

三、数词组成的常用短语 这类短语大多是由数词和介词搭配而成,或是数词和其他词类搭配而成,常用来表示不确定的范围和概念,有时也可表示事物所处的状态或其他情况。例如: by hundreds 数以百计 by thousands 数以千计;大量 by(the) millions 数以百万计 by halves 不完全 hundreds of 数百;数以百计 thousands of 数千;数以千计 hundreds of thousands of 几十万;无数的 thousands upon thousands 万千上万 millions upon millions of 千百万 tens of, decades of 数十个 dozens of 几打;几十个 scores of 许多,大量 billions of 几十亿 hundreds of millions 亿万

a thousand and one 无数的 a hundred and one 许多 ten to one 十之八九 nine cases out of ten 十之八九 nine tenths 十之八九;几乎全部 tens of thousands 好几万 several millions of 数百万 fifty-fifty 各半的;对半的;平均 by one hundred percent 百分之百的;全部a long hundred 一百多;一百二十 a few tenths of 十分之几;有几成 by twos and threes 三三两两 by ones or twos 三三两两;零零落落 in two twos 转眼;立即 at sixes and sevens 乱七八糟 one or two 少许;几个

数字英文表达

一、数词的分类 1、基数词 表示数目的词称为基数词。其形式如下: A.从1——10 one,two,three,four,five,six,seven,eight,nine,ten. B.从11——19 eleven,twelve, thirteen, fourteen, fifteen, sixteen, seventeen,eighteen, nineteen. 这里除eleven, twelve, thirteen, fifteen, eighteen为特殊形式外,fourteen,sixteen,seventeen,nineteen都就是由其个位数形式后添加后缀-teen构成。 C.从21——99 整数几十中除twenty,thirty, forty,fifty,eighty为特殊形式外,sixty,seventy,ninety都就是其个位数形式后添加后缀-ty构成。表示几十几时,在几十与个位基数词形式之间添加连字符“-” 21 twenty-one 76 seventy-six D.百位数 个数基数词形式加“hundred”,表示几百,在几十几与百位间加上and. 101 a hundred and one 320 three hundred and twenty 648 six hundred and forty-eight E.千位数以上 从数字的右端向左端数起,每三位数加一个逗号“,”。从右开始,第一个“,”前的数字后添加thousand,第二个“,”前面的数字后添加million,第三个“,”前的数字后添加billion。然后一节一节分别表示,两个逗号之间最大的数为百位数形式。 2,648 two thousand six hundred and forty-eight

英语中数字表示(非常实用)

英语中数字表示 在汉英笔译和英语写作中,经常会遇到数字;哪些场合用单词表示,哪些场合用阿拉伯数字表示,往往让人难以确定,现行语法书中也极少涉及此类问题。实际上,以英语为母语的国家,在书写数字时已形成几条约定俗成的规则,现总结如下供读者参考。 一、英美等国的出版社在排版时遵循一条原则,即1至10用单词 表示,10以上的数目用阿拉伯数字(也有的以100为界限),这条原则值得我们借鉴。 That table measures ten feet by five. 那个工作台长10英尺,宽5英尺。 The traditional pattern of classroom experience at the college level brings the professor and a group of 20 to 30 students together for a 45-to-50-minute class session two or three times a week. 大学课堂的传统的教学方式是,一个教授和二三十名学生每周见面两三次,每次授课时间45到50分钟。 二.人数用阿拉伯数字表示显得更简洁明了,但不定数量、近似值用单词表示较恰当。 There are 203817 voters on the electoral rolls. 选举名单上有203817个投票人。 Nearly thirty thousand voters took part in this election. 1

近3万个投票人参加了这次选举。 三.遇到日期、百分比、带单位的特殊数字,通常用阿拉伯数字。 Maximum swivel of table is l20. 工作台的最大旋转角度是120度。 Eg. 3rd March l991或3 March l991; a discount of 5 percent(5%的折扣); purchased 7 yards of carpet(买7码地毯); ordered 2 pounds of minced steak(订购2磅肉馅) 如果涉及的数目和单位是不定数,可用单词表示。 about five miles per hour(每小时大约5英里) at least ten yards away(至少有10码远) hesitated for a moment or two(犹豫了片刻) I have warned you a hundred times(我已经警告你多少遍了。) 四.在科技文章中,数字频繁出现,用阿拉伯数字比用单词陈述更有利。 The new engine has a capacity of 4.3 litres and a power output of 153 kilowatts at 4400 revolutions per minute. 这台新发动机的容积为4.3升,转速为每分钟4400转,时输出功率是153千瓦。 We know that the weight of a cubic foot of air at 0?C and 76cm,pressure is 0.08l pound, or 12 cubic feet of air

英文数字表示方法大全

英文数字表示方法大全(2009-07-24 15:26:59) 转载 标签:教育分类:少儿英语学习方法 数字的表示方法数词 数词主要分为基数词和序数词两类。 一、数词的分类 1. 基数词 表示数目的词称为基数词。其形式如下: A.从1——10 one,two,three,four,five,six,seven,eight,nine,ten. B.从 11——19 eleven,twelve, thirteen, fourteen,fifteen, sixteen, seventeen,eighteen, nineteen.这里除 eleven, twelve, thirteen, fifteen,eighteen为特殊形式外,fourteen,sixteen,seventeen,nineteen 都是由其个位数形式后添加后缀-teen构成。

C.从 21——99 整数几十中除twenty,thirty, forty,fifty,eighty为特殊形式外,sixty,seventy,ninety都是其个位数形式后添加后缀-ty构成。 表示几十几时,在几十和个位基数词形式之间添加连字符“-” 21 twenty-one 76 seventy-six D.百位数 个数基数词形式加“hundred”,表示几百,在几十几与百位间加上and. 101 a hundred and one 320 three hundred and twenty 648 six hundred and forty-eight E.千位数以上 从数字的右端向左端数起,每三位数加一个逗号“,”。从右开始,第一个“,”前的数字后添加 thousand,第二个“,” 前面的数字后添加 million,第三个“,”前的数字后添加billion。然后一节一节分别表示,两个逗号之间最大的数为百位数形式。

英语翻译中数字的正确表达方式

英语翻译中数字的正确表达方式 一. 英美等国的出版社在排版时遵循一条原则,即1至10用单词表示,10以上的数目用阿拉伯数字(也有的以100为界限),这条原则值得我们行文时借鉴。 Eg. That table measures ten feet by five. 那个工作台长10英尺,宽5英尺。 Eg. The traditional pattern of classroom experience at the college level brings the professor and a group of 20 to 30 students together for a 45-to-50-minute class session two or three times a week. 由一个教授和十名学生每周会晤两三次,每次授课时间45到50分钟,是大学程度课堂教学的传统方式。 二. 人数用阿技伯数字表示显得更简洁明了,但不定数量、近似值用单词表示较恰当。Eg. There are 203817 voters on the electoral rolls. 选举名单上有203817个投票人。 Eg. Nearly thirty thousand voters took part in this election.近3万个投票人参加了这次选举。 三. 遇到日期、百分比、带单位的特殊数字,通常用阿拉伯数字。 Eg. Maximum swivel of table is l20. 工作台的最大回转角度是120度。 Eg. 3rd March l991或3 March l991;a discount of 5 percent(5%的折扣); Eg. purchased 7 yards of carpet(买7码地毯); Eg. ordered 2 pounds of minced steak(订购2磅剁碎的肉)。 如果涉及的数目和单位是不定数,可用单词表示。 Eg. about five miles per hour(每小时大约5英里) Eg. at least ten yards away(至少有10码远) Eg. hesitated for a moment or two(犹豫了片刻) Eg. I have warned you a hundred times(我已经警告你多少遍了)。 四. 在科技文章中,数字频繁出现,用阿拉伯数字比用单词陈述更有利。 Eg. The new engine has a capacity of 4.3 litres and a power out-put of 153 kilowatts at 4400 revolutions per minute. 这台新发动机的容积为4.3升,转速为每分钟4400转时输出功率是153千瓦。 Eg. We know that the weight of a cubic foot of air at 0oC and 76cm,pressure is 0.08l pound, or 12 cubic feet of air weigh a pound ,1立方英尺的空气在0摄氏度和760毫米汞柱压力下,重量是0.81磅,也就是说12立方英尺空气的重量是1磅。 五. 句首不用阿拉伯数字,句末要尽量避免用阿拉伯数字。 Eg. 4th July is an important date in American history. 应该写成The fourth of July... Eg. 19 couples took part in the ballroom dancing competition.19对选手参加了交际舞比赛。应改写成:Nineteen couples took... Eg. 60%profit was a reported.据报道有60%的利润。应改写成:Sixty per cent profit… Eg. 1345 kilograms force was applied at the center point of the bar.试验时在杆的中点加1345公斤力。 可改成When tested, a force of l345 kg was applied... 六. 遇到分数,可用带连字符号的单词表示。 Eg. At 1east two-thirds of the class have had colds.这个班至少有三分之二的学生患重感冒。Eg. Nitrogen forms about four-fifths of the atmosphere.氮约占大气的五分之四

英语数字表达法

英语数字表达法 一、熟读牢记关键数字 迅速无误识别数字的前提是必须能够流利地读出数字。要从读两位数起,然后练习读三位和四位数乃至五位或六位以上的数字。其中两位和三位数的读法是读所有数字的基础。 英文数字中的每一个逗点的读法也要牢记: 有一个逗点读“thousand” 两个逗点读“million” 三个逗点读“billion” 还要清楚,每个逗点间由三位数组成。英文数字中的第四位数、第七位数、第十位数是很关键的数位。 Examples: 1,234 读作:one thousand, two hundred and thirty-four 4,567,809 读作:four million, five hundred and sixty-seven thousand, eight hundred and nine 5,678,120,000 读作:five billion, six hundred and seventy-eight million, one hundred and twenty thousand 二、“-teen和“-ty”的区别 “-teen”和“-ty”是比较容易混淆的一对读音。我们可以通过音和音素的差异来区别两者。含有“- teen ”的词有两个重音,即“-teen”要重读,且“-teen”中的元音为长元音[ti:n],发音长而清晰;而含有“-ty”的词只有一个重音,即“-ty”不重读,且“-ty ”中的元音为短元音[ti],发音短而急促。 Examples: fifteen['fif'ti:n] fifty['fifti] nineteen['nai'ti:n] ninety['naiti] 三、英美数字读法的差异 有时,同样一个数字,英国人和美国人的读法也不尽相同,这无疑会使本来就棘手的数字雪上加霜。如:部分有一个逗点的数字(四位数),英国人用“thousand”表示,而美国人则多用“hundred”。再如,有三个逗点的数字(十位数),美式读法为“billion”,而英式读法为“thousand million”。因此,熟悉英美两种不同的读法对消除数字理解上的歧义是十分必要的。 例词 英式1,900 one thousand, nine hundred 美式1,900 nineteen hundred 英式4,000,000,000 four thousand million 美式4,000,000,000 four billion 再者,英国英语在百位和十位之间加读“and”,而美国英语往往不用“and”。比如754这个数字。英国英语读成seven hundred and fifty-four,而美国英语则读为

数字翻译方法

一、英译中 如果你听到下面一群复杂的数字,你该怎么记录呢? 例:It covers a total of five hundred forty-nine million nine hundred forty-six thousand seven hundred and sixty-eight square meters. 可能会有这样的几种记录方法: 第一种:5 h 49 m 9 h 46 th 7 h 68 sqm 第二种:549 m 946 th 768 sqm 如果在英译中时这么记录的话,恐怕等到规定翻译的时间过了你还没搞清究竟这堆数字是多少,翻成中文该怎么说。这时,我们就要考虑是否有简单易做的方法呢?答应肯定是YES。 记住:英文表达数字时可以从右往左,三位一逗号,例如前面记录的数字就是:549, 946,768 英文:三位一逗号,逗号从右往左,每个逗号的位置分别对应的是:thousand, million, billion。 因此,要想英文数字记得快而准,三位数的听写要过关。 听写英文数字和表达法这样应该没多大问题了,那么怎样翻译成中文呢?方法也是一样,中文用竖线表达,以区分英文的逗号,即从右往左、四位一竖。刚才例举的数字:549,946,768可以这么添上记号转换成中文的表达法:5│49,94│6,768 中文:四位一竖,每个竖线位置从右往左分别对应的是:万,亿 所以上面的数字经划线后可以轻松的读成:五亿//四千九百九十四万//六千七百六十八 二、中译英 有了上面中译英竖线和逗号的数字的记录和表达方法,相信数字的翻译会变得比较简单。 例:我们听到十二亿//七百二十一万//四百七十二 这个数字相对较长、较复杂,我们这么处理: 首先,中文的“万”“亿”按四位一竖的方法记录,因此写成12│0721│0472。之所以面对较长较大的数字这步不能省的原因是:如果你没有其中的一竖,我们往往容易在后面的“721”“472”前漏写0,这样就使数字的表达有误。 接着,把这个数字转换成英文。按英文从右往左三位一逗号的方法把中文竖线表达的数字12│0721│0472 转换成英文逗号标记的数字,为1,207,210,472。 最后,根据英文从右往左每个逗号分别代表的是thousand, million, billion,用英语表达出该数字:one billion two hundred and seven million two hundred and ten thousand four hundred and seven-two 有了逗号和竖线的辅助,从某种程度上说,长的数字也会变得容易记录和表达了。

相关文档
最新文档