欧美色欧美亚洲高清在线观看,国产特黄特色a级在线视频,国产一区视频一区欧美,亚洲成a 人在线观看中文

  1. <ul id="fwlom"></ul>

    <object id="fwlom"></object>

    <span id="fwlom"></span><dfn id="fwlom"></dfn>

      <object id="fwlom"></object>

      EXCEL 中如何將數(shù)字轉(zhuǎn)換成英文(5篇模版)

      時間:2019-05-14 17:05:25下載本文作者:會員上傳
      簡介:寫寫幫文庫小編為你整理了多篇相關(guān)的《EXCEL 中如何將數(shù)字轉(zhuǎn)換成英文》,但愿對你工作學習有幫助,當然你在寫寫幫文庫還可以找到更多《EXCEL 中如何將數(shù)字轉(zhuǎn)換成英文》。

      第一篇:EXCEL 中如何將數(shù)字轉(zhuǎn)換成英文

      一、網(wǎng)上下載的代碼

      1.創(chuàng)建一個模塊:

      在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, ”.“)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)BeforePoint = Right(BeforePoint, nNumLen(nNumLen Mod 3))End If nBit = Len(BeforePoint)/ 3 tmpStr = DecodeHundred(CurString)If(BeforePoint = String(Len(BeforePoint), ”0“)Or nBit = 0)And Len(CurString)= 3 Then If CInt(Left(CurString, 1))<> 0 And CInt(Right(CurString, 2))<> 0 Then 'tmpStr = Left(tmpStr, InStr(1, tmpStr, Unit(4))+ Len(Unit(4)))& Unit(8)& ” “ & Right(tmpStr, Len(tmpStr)3))If BeforePoint = String(Len(BeforePoint), ”0“)Then Exit Do 'Debug.Print Str Loop BeforePoint = Str If Len(AfterPoint)> 0 Then AfterPoint =Unit(6)& ” “ & DecodeHundred(AfterPoint)& ” “ & Unit(5)Else AfterPoint = Unit(5)End If NumberToString = BeforePoint & ” “ & AfterPoint End Function Private Function DecodeHundred(HundredString As String)As String Dim tmp As Integer If Len(HundredString)> 0 And Len(HundredString)<= 3 Then Select Case Len(HundredString)Case 1 tmp = CInt(HundredString)If tmp <> 0 Then DecodeHundred = StrNO(tmp)Case 2 tmp = CInt(HundredString)If tmp <> 0 Then If(tmp < 20)Then DecodeHundred = StrNO(tmp)Else If CInt(Right(HundredString, 1))= 0 Then DecodeHundred = StrTens(Int(tmp / 10))Else DecodeHundred = StrTens(Int(tmp / 10))& ”-“ & StrNO(CInt(Right(HundredString, 1)))End If End If End If Case 3 If CInt(Left(HundredString, 1))<> 0 Then DecodeHundred = StrNO(CInt(Left(HundredString, 1)))& ” “ & Unit(4)& ” “ & DecodeHundred(Right(HundredString, 2))Else DecodeHundred = DecodeHundred(Right(HundredString, 2))End If Case Else End Select End If End Function Private Sub Init()If StrNO(1)<> ”O(jiān)ne“ Then StrNO(1)= ”O(jiān)ne“ StrNO(2)= ”Two“ StrNO(3)= ”Three“ StrNO(4)= ”Four“ StrNO(5)= ”Five“ StrNO(6)= ”Six“ StrNO(7)= ”Seven“ StrNO(8)= ”Eight“ StrNO(9)= ”Nine“ StrNO(10)= ”Ten“ StrNO(11)= ”Eleven“ StrNO(12)= ”Twelve“ StrNO(13)= ”Thirteen“ StrNO(14)= ”Fourteen“ StrNO(15)= ”Fifteen“ StrNO(16)= ”Sixteen“ StrNO(17)= ”Seventeen“ StrNO(18)= ”Eighteen“ StrNO(19)= ”Nineteen“ StrTens(1)= ”Ten“ StrTens(2)= ”Twenty“ StrTens(3)= ”Thirty“ StrTens(4)= ”Forty“ StrTens(5)= ”Fifty“ StrTens(6)= ”Sixty“ StrTens(7)= ”Seventy“ StrTens(8)= ”Eighty“ StrTens(9)= ”Ninety“ Unit(1)= ”Thousand“ '材熌

      Unit(2)= ”Million“ '材熌

      Unit(3)= ”Billion“ '材熌

      Unit(4)= ”Hundred“ Unit(5)= ”O(jiān)nly“ Unit(6)= ”Point“ Unit(7)= ”Cents“ Unit(8)= ”And“ End If End Sub 保存此代碼到本地

      3.模塊中已經(jīng)定義了函數(shù)名稱:NumberToString

      直接當作EXCEL本地函數(shù)使用,例如在A1=7,在B1中輸入=NumberToString(A1)就可以拉!很簡單的吧?

      二、以川改過的代碼:

      '功能模塊:數(shù)字轉(zhuǎn)英文(貨幣)大寫

      'Public Function NumberToString(Number As Double)As String '調(diào)用形式:debug.print NumberToString(1234.32)'說明:最大支持12位數(shù)字,小數(shù)點后精確兩位 '程序:楊鑫光(Volitation)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 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, ”.“)InStr(1, Str, ”.“))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)BeforePoint = Right(BeforePoint, nNumLen(nNumLen Mod 3))End If nBit = Len(BeforePoint)/ 3 tmpStr = DecodeHundred(CurString)If(BeforePoint = String(Len(BeforePoint), ”0“)Or nBit = 0)And Len(CurString)= 3 Then If CInt(Left(CurString, 1))<> 0 And CInt(Right(CurString, 2))<> 0 Then tmpStr = Left(tmpStr, InStr(1, tmpStr, Unit(4))+ Len(Unit(4)))& Unit(8)& ” “ & Right(tmpStr, Len(tmpStr)3))If BeforePoint = String(Len(BeforePoint), ”0“)Then Exit Do 'Debug.Print Str Loop BeforePoint = Str

      NumberToString = BeforePoint & ” “ End Function Private Function DecodeHundred(HundredString As String)As String Dim tmp As Integer If Len(HundredString)> 0 And Len(HundredString)<= 3 Then Select Case Len(HundredString)Case 1 tmp = CInt(HundredString)If tmp <> 0 Then DecodeHundred = StrNO(tmp)Case 2 tmp = CInt(HundredString)If tmp <> 0 Then If(tmp < 20)Then DecodeHundred = StrNO(tmp)Else If CInt(Right(HundredString, 1))= 0 Then DecodeHundred = StrTens(Int(tmp / 10))Else DecodeHundred = StrTens(Int(tmp / 10))& ”-“ & StrNO(CInt(Right(HundredString, 1)))End If End If End If Case 3 If CInt(Left(HundredString, 1))<> 0 Then DecodeHundred = StrNO(CInt(Left(HundredString, 1)))& ” “ & Unit(4)& DecodeHundred(Right(HundredString, 2))Else DecodeHundred = DecodeHundred(Right(HundredString, 2))End If Case Else End Select End If

      End Function Private Sub Init()If StrNO(1)<> ”O(jiān)ne“ Then

      ” “ & StrNO(1)= ”O(jiān)ne“ StrNO(2)= ”Two“ StrNO(3)= ”Three“ StrNO(4)= ”Four“ StrNO(5)= ”Five“ StrNO(6)= ”Six“ StrNO(7)= ”Seven“ StrNO(8)= ”Eight“ StrNO(9)= ”Nine“ StrNO(10)= ”Ten“ StrNO(11)= ”Eleven“ StrNO(12)= ”Twelve“ StrNO(13)= ”Thirteen“ StrNO(14)= ”Fourteen“ StrNO(15)= ”Fifteen“ StrNO(16)= ”Sixteen“ StrNO(17)= ”Seventeen“ StrNO(18)= ”Eighteen“ StrNO(19)= ”Nineteen“

      StrTens(1)= ”Ten“ StrTens(2)= ”Twenty“ StrTens(3)= ”Thirty“ StrTens(4)= ”Forty“ StrTens(5)= ”Fifty“ StrTens(6)= ”Sixty“ StrTens(7)= ”Seventy“ StrTens(8)= ”Eighty“ StrTens(9)= ”Ninety“

      Unit(1)= ”Thousand“ '第一個三位 Unit(2)= ”Million“ '第二個三位 Unit(3)= ”Billion“ '第三個三位 Unit(4)= ”Hundred“

      Unit(8)= ”And“ End If End Sub

      三、是我改過的代碼:

      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, ”.“)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)

      BeforePoint = Right(BeforePoint, nNumLen(nNumLen Mod 3))

      End If

      nBit = Len(BeforePoint)/ 3

      tmpStr = DecodeHundred(CurString)

      If(BeforePoint = String(Len(BeforePoint), ”0“)Or nBit = 0)And Len(CurString)= 3 Then

      If CInt(Left(CurString, 1))<> 0 And CInt(Right(CurString, 2))<> 0 Then

      'tmpStr = Left(tmpStr, InStr(1, tmpStr, Unit(4))+ Len(Unit(4)))& Unit(8)& ” “ & Right(tmpStr, Len(tmpStr)3))

      If BeforePoint = String(Len(BeforePoint), ”0“)Then Exit Do

      'Debug.Print Str

      Loop

      BeforePoint = Str

      If Len(AfterPoint)> 0 Then

      AfterPoint = Unit(6)& ” “ & DecodeHundred(AfterPoint)

      Else

      AfterPoint = Unit(5)

      End If

      NumberToString = BeforePoint & ” “ & AfterPoint End Function Private Function DecodeHundred(HundredString As String)As String

      Dim tmp As Integer

      If Len(HundredString)> 0 And Len(HundredString)<= 3 Then

      Select Case Len(HundredString)

      Case 1

      tmp = CInt(HundredString)

      If tmp <> 0 Then DecodeHundred = StrNO(tmp)

      Case 2

      tmp = CInt(HundredString)

      If tmp <> 0 Then

      If(tmp < 20)Then

      DecodeHundred = StrNO(tmp)

      Else

      If CInt(Right(HundredString, 1))= 0 Then

      DecodeHundred = StrTens(Int(tmp / 10))

      Else

      DecodeHundred = StrTens(Int(tmp / StrNO(CInt(Right(HundredString, 1)))

      End If

      End If

      10))& ”-“ &

      End If

      Case 3

      If CInt(Left(HundredString, 1))<> 0 Then

      DecodeHundred = StrNO(CInt(Left(HundredString, 1)))& ” “ & Unit(4)& ” “ & DecodeHundred(Right(HundredString, 2))

      Else

      DecodeHundred = DecodeHundred(Right(HundredString, 2))

      End If

      Case Else

      End Select

      End If End Function Private Sub Init()

      If StrNO(1)<> ”O(jiān)ne“ Then

      StrNO(1)= ”O(jiān)ne“

      StrNO(2)= ”Two“

      StrNO(3)= ”Three“

      StrNO(4)= ”Four“

      StrNO(5)= ”Five“

      StrNO(6)= ”Six“

      StrNO(7)= ”Seven“

      StrNO(8)= ”Eight“

      StrNO(9)= ”Nine“

      StrNO(10)= ”Ten“

      StrNO(11)= ”Eleven“

      StrNO(12)= ”Twelve“

      StrNO(13)= ”Thirteen“

      StrNO(14)= ”Fourteen“

      StrNO(15)= ”Fifteen“

      StrNO(16)= ”Sixteen“

      StrNO(17)= ”Seventeen“

      StrNO(18)= ”Eighteen“

      StrNO(19)= ”Nineteen“

      StrTens(1)= ”Ten“

      StrTens(2)= ”Twenty“

      StrTens(3)= ”Thirty“

      StrTens(4)= ”Forty“

      StrTens(5)= ”Fifty“

      StrTens(6)= ”Sixty“

      StrTens(7)= ”Seventy“

      StrTens(8)= ”Eighty“

      StrTens(9)= ”Ninety“

      Unit(1)= ”Thousand“ '材熌

      Unit(2)= ”Million“ '材熌

      Unit(3)= ”Billion“ '材熌

      Unit(4)= ”Hundred“

      Unit(5)= ”O(jiān)nly“

      Unit(6)= ”Point“

      Unit(7)= ”Cents“

      Unit(8)= ”And"

      End If End Sub

      第二篇:EXCEL表格中將數(shù)字金額轉(zhuǎn)換為英文

      Excel表格中如何將數(shù)字金額轉(zhuǎn)換為英文

      (如B1列寫162890元,自動轉(zhuǎn)換為英文

      ONE HUNDRED SIXTY TWO THOUSAND EIGHT HUNDRED NINETY DOLLARS AND NO CENTS)

      1、新建Excel表格

      2、按住“Alt+F11”打開VBA編輯器

      3、在VBA編輯器中單擊菜單欄“插入”——模塊

      4、在打開的模塊中輸入如下代碼: Option Explicit Function 數(shù)字轉(zhuǎn)英文(ByValMyNumber)Dim Dollars, Cents, Temp Dim DecimalPlace, Count ReDimPlace(9)As String Place(2)= “ Thousand ” Place(3)= “ Million ” Place(4)= “ Billion ” Place(5)= “ Trillion ” MyNumber = Trim(Str(MyNumber))DecimalPlace = InStr(MyNumber, “.”)If DecimalPlace> 0 Then Cents = GetTens(Left(Mid(MyNumber, DecimalPlace + 1)& _

      “00”, 2))MyNumber = Trim(Left(MyNumber, DecimalPlace3)Else MyNumber = “" End If Count = Count + 1 Loop Select Case Dollars Case ”“ Dollars = ”No Dollars“ Case ”O(jiān)ne“ Dollars = ”O(jiān)ne Dollar“ Case Else Dollars = Dollars &” Dollars“ End Select Select Case Cents Case ”“ Cents = ” and No Cents“ Case ”O(jiān)ne“ Cents = ” and One Cent“ Case Else Cents = ” and “ & Cents & ” Cents“ End Select 數(shù)字轉(zhuǎn)英文 = Dollars & Cents End Function Function GetHundreds(ByValMyNumber)Dim Result As String If Val(MyNumber)= 0 Then Exit Function MyNumber = Right(”000“ &MyNumber, 3)If Mid(MyNumber, 1, 1)<> ”0“ Then Result = GetDigit(Mid(MyNumber, 1, 1))& ” Hundred “ End If If Mid(MyNumber, 2, 1)<> ”0“ Then Result = Result &GetTens(Mid(MyNumber, 2))Else Result = Result &GetDigit(Mid(MyNumber, 3))End If GetHundreds = Result End Function Function GetTens(TensText)Dim Result As String Result = ”“ If Val(Left(TensText, 1))= 1 Then Select Case Val(TensText)Case 10: Result = ”Ten“ Case 11: Result = ”Eleven“ Case 12: Result = ”Twelve“ Case 13: Result = ”Thirteen“ Case 14: Result = ”Fourteen“ Case 15: Result = ”Fifteen“ Case 16: Result = ”Sixteen“ Case 17: Result = ”Seventeen“ Case 18: Result = ”Eighteen“ Case 19: Result = ”Nineteen“ Case Else End Select Else Select Case Val(Left(TensText, 1))Case 2: Result = ”Twenty “ Case 3: Result = ”Thirty “ Case 4: Result = ”Forty “ Case 5: Result = ”Fifty “ Case 6: Result = ”Sixty “ Case 7: Result = ”Seventy “ Case 8: Result = ”Eighty “ Case 9: Result = ”Ninety “ Case Else End Select Result = Result &GetDigit _(Right(TensText, 1))End If GetTens = Result End Function

      Function GetDigit(Digit)Select Case Val(Digit)Case 1: GetDigit = ”O(jiān)ne“ Case 2: GetDigit = ”Two“ Case 3: GetDigit = ”Three“ Case 4: GetDigit = ”Four“ Case 5: GetDigit = ”Five“ Case 6: GetDigit = ”Six“ Case 7: GetDigit = ”Seven“ Case 8: GetDigit = ”Eight“ Case 9: GetDigit = ”Nine“ Case Else: GetDigit = ”" End Select End Function

      5/現(xiàn)在回到Excel表格中,單擊“B1”單元格,在菜單欄選擇“插入”——函數(shù)。6/在打開的“插入函數(shù)”對話框的“或選擇類別”中選擇“用戶定義”,然后選擇函數(shù)“數(shù)字轉(zhuǎn)英文”,單擊“確定”按鈕。

      7/在打開的“函數(shù)參數(shù)”對話框中輸入“A1”,單擊“確定”按鈕。8/ 然后用填充手柄向下填充公式,現(xiàn)在就可以看到轉(zhuǎn)換好的英文了。

      第三篇:英文1-33數(shù)字

      春節(jié) the Sprlng Festival(New

      Yearls Day of the Chinese lunar calendar)農(nóng)歷正月初一元宵節(jié)(燈節(jié))the Lantern Festival 農(nóng)歷正月十五清明節(jié) the Qing Ming Festival 四月五日前后

      端午節(jié) the Dragon-Boat Festiva 農(nóng)歷五月初五

      中秋節(jié) the MidAutumn Festival

      (the Moon Festival)農(nóng)歷八月十五

      重陽節(jié) the Double Ninth Festival 農(nóng)歷九月初九

      元旦(1月1日)NewYear'sDay

      春節(jié)(農(nóng)歷一月一日)theSpringFestival

      元宵節(jié)(農(nóng)歷一月十五日)theLanternFestival

      國際勞動婦女節(jié)(3月8日)InternationalWorkingWomen'sDay植樹節(jié)(3月12日)ArborDay

      郵政節(jié)(3月20日)PostalDay

      世界氣象節(jié)(3月23日)WorldMeteorologyDay

      清明節(jié)(4月5日)ChingMingFestival;Tomb-sweepingFestival國際勞動節(jié)(5月1日)InternationalLabourDay

      中國青年節(jié)(5月4日)ChineseYouthDay

      護士節(jié)(5月12日)Nurses'Festival

      端午節(jié)(農(nóng)歷五月初五)theDragonBoatFestival

      國際兒童節(jié)(6月1日)InternationalChildren'sDay

      中國共產(chǎn)黨成立紀念日(7月1日)theParty'sBirthday建軍節(jié)(8月1日)theArmy'sDay

      中秋節(jié)(農(nóng)歷八月十五)Mid-autumn(Moon)Festival

      教師節(jié)(9月10日)Teachers'Day

      重陽節(jié)(農(nóng)歷九月九日)Double-ninthDay

      國慶節(jié)(10月1日)NationalDay

      除夕(農(nóng)歷十二月三十日)NewYear'sEve

      陽歷節(jié)日

      1月1日元旦(New Year's Day)

      2月2日世界濕地日(World Wetlands Day)

      2月14日情人節(jié)(Valentine's Day)

      3月3日全國愛耳日

      3月5日青年志愿者服務日

      3月8日國際婦女節(jié)(International Women' Day)

      3月9日保護母親河日

      3月12日中國植樹節(jié)(China Arbor Day)

      3月14日白色情人節(jié)(White Day)

      3月14日國際警察日(International Policemen' Day)

      3月15日世界消費者權(quán)益日(World Consumer Right Day)3月21日世界森林日(World Forest Day)

      3月21日世界睡眠日(World Sleep Day)

      3月22日世界水日(World Water Day)

      3月23日世界氣象日(World Meteorological Day)

      3月24日世界防治結(jié)核病日(World Tuberculosis Day)

      4月1日愚人節(jié)(April Fools' Day)

      4月5日清明節(jié)(Tomb-sweeping Day)

      4月7日世界衛(wèi)生日(World Health Day)

      4月22日世界地球日(World Earth Day)

      4月26日世界知識產(chǎn)權(quán)日(World Intellectual Property Day)

      5月1日國際勞動節(jié)(International Labour Day)

      5月3日世界哮喘日(World Asthma Day)

      5月4日中國青年節(jié)(Chinese Youth Day)

      5月8日世界紅十字日(World Red-Cross Day)

      5月12日國際護士節(jié)(International Nurse Day)

      5月15日國際家庭日(International Family Day)

      5月17日世界電信日(World Telecommunications Day)

      5月20日全國學生營養(yǎng)日

      5月23日國際牛奶日(International Milk Day)

      5月31日 世界無煙日(World No-Smoking Day)

      6月1日 國際兒童節(jié)(International Children's Day)

      6月5日世界環(huán)境日(International Environment Day)

      6月6日全國愛眼日

      6月17日世界防治荒漠化和干旱日(World Day to combat desertification)6月23日國際奧林匹克日(International Olympic Day)

      6月25日全國土地日

      6月26日國際禁毒日(International Day Against Drug Abuse and Illicit Trafficking)

      7月1日中國共產(chǎn)黨誕生日(Anniversary of the Founding of the Chinese Communist Party)

      7月1日國際建筑日(International Architecture Day)

      7月7日中國人民抗日戰(zhàn)爭紀念日

      7月11日世界人口日(World Population Day)

      8月1日中國人民解放軍建軍節(jié)(Army Day)

      8月12日國際青年節(jié)(International Youth Day)

      9月8日國際掃盲日(International Anti-illiteracy Day)

      9月10日中國教師節(jié)(Teacher's Day)

      9月16日中國腦健康日

      9月16日國際臭氧層保護日(International Day for the Preservation of the Ozone Layer)

      9月20日全國愛牙日

      9月21日世界?;鹑?World Cease-fire Day)

      9月27日世界旅游日(World Tourism Day)

      10月1日中華人民共和國國慶節(jié)(National Day)

      10月1日國際音樂日(International Music Day)

      10月1日國際老年人日(International Day of Older Persons)

      10月4日世界動物日(World Animal Day)

      10月5日世界教師日(World Teachers' Day)(聯(lián)合國教科文組織確立)10月8日全國高血壓日

      10月9日世界郵政日(World Post Day)

      10月10日世界精神衛(wèi)生日(World Mental Health Day)

      10月14日世界標準日(World Standards Day)

      10月15日國際盲人節(jié)(International Day of the Blind)

      10月15日世界農(nóng)村婦女日(World Rural Women's Day)

      10月16日世界糧食日(World Food Day)

      10月17日國際消除貧困日(International Day for the Eradication of Poverty)10月24日聯(lián)合國日(United Nations Day)

      10月24日世界發(fā)展新聞日(World Development Information Day)

      10月28日中國男性健康日

      10月29日國際生物多樣性日(International Biodiversity Day)

      10月31日萬圣節(jié)(Halloween)

      11月8日中國記者節(jié)

      11月9日消防宣傳日

      11月14日世界糖尿病日(World Diabetes Day)

      11月17日國際大學生節(jié)

      11月25日國際消除對婦女的暴力日(International Day For the elimination of Violence against Women)

      12月1日世界愛滋病日(World AIDS Day)

      12月3日世界殘疾人日(World Disabled Day)

      12月4日全國法制宣傳日

      12月9日世界足球日(World Football Day)

      12月25日圣誕節(jié)(Christmas Day)

      12月29日國際生物多樣性日(International Biological Diversity Day)1月最后一個星期日國際麻風節(jié)

      3月最后一個完整周的星期一中小學生安全教育日

      春分月圓后的第一個星期日復活節(jié)(Easter Monday)(有可能是3月22-4月25日間的任一天)

      5月第二個星期日母親節(jié)(Mother's Day)

      5月第三個星期日全國助殘日

      6月第三個星期日父親節(jié)(Father's Day)

      9月第三個星期二國際和平日(International Peace Day)

      9月第三個星期六全國國防教育日

      9月第四個星期日國際聾人節(jié)(International Day of the Deaf)

      10月的第一個星期一世界住房日(World Habitat Day)

      10月的第二個星斯一加拿大感恩節(jié)(Thanksgiving Day)

      10月第二個星期三國際減輕自然災害日(International Day for Natural Disaster Reduction)

      10月第二個星期四世界愛眼日(World Sight Day)

      11月最后一個星期四美國感恩節(jié)(Thanksgiving Day)

      農(nóng)歷節(jié)日

      農(nóng)歷正月初一春節(jié)(the Spring Festival)

      農(nóng)歷正月十五元宵節(jié)(Lantern Festival)

      農(nóng)歷五月初五端午節(jié)(the Dragon-Boat Festival)

      農(nóng)歷七月初七乞巧節(jié)(中國情人節(jié))(Double-Seventh Day)農(nóng)歷八月十五中秋節(jié)(the Mid-Autumn Festival)

      農(nóng)歷九月初九重陽節(jié)(the Double Ninth Festival)

      農(nóng)歷臘月初八臘八節(jié)(the laba Rice Porridge Festival)農(nóng)歷臘月二十四傳統(tǒng)掃房日

      1-one23-twenty-three 2-two24-twenty-four 3-three25-twenty-five 4-four26-twenty-six 5-five27-twenty-sever 6-six28-twenty-eight 7-seven29-twenty-nine 8-eight30-thirty 9-nine31-thirty-one 10-ten32-thirty-two 11-eleven33thirty-three12-twelve

      13-thirteen

      14-fourteen

      15-fifteen

      16-sixteen

      17-seventeen

      18-eighteen

      19-nineteen

      20-twenty

      21-twenty-one

      春節(jié)Springfestival

      中秋節(jié)Mid-Autmnfestival

      萬圣節(jié)Halloween

      元旦Newyear'sday

      端午節(jié)Dragonboatfestival 復活節(jié)Easter

      圣誕節(jié)Christmas

      兒童節(jié)Children'sday

      國慶節(jié)Nationalday

      父親節(jié)Father’s Day,父親節(jié):每年6月的第三個星期日 母親節(jié)Mother's Day母親節(jié):每年5月的第二個星期日 五一國際勞動節(jié):(the International Labor Day)

      May Day

      第四篇:如何幫助中學生聽說英文數(shù)字

      如何幫助中學生聽說英文數(shù)字

      山西省教育學院

      中學英語教材中含有許多涉及到數(shù)字的內(nèi)容,如:時間、年齡、價格、距離、號碼、尺寸等。許多中學生 抱怨聽不懂數(shù)字、說不出數(shù)字,這是因為對英文數(shù)字的組成、排列及讀法不太熟悉而造成的。當碰到一個數(shù)字 時,不能作出迅速準確的反映,而往往要先在心里進行翻譯、默讀,這就大大影響了聽說英文的能力。本文將 介紹一些數(shù)字在不同場合的表

      達方式、發(fā)音特點及相應對策。

      一、熟讀牢記關(guān)鍵數(shù)字

      迅速無誤識別數(shù)字的前提是必須能夠流利地讀出數(shù)字。要從讀兩位數(shù)起,然后練習讀三位和四位數(shù)乃至五 位或六位以上的數(shù)字。其中兩位和三位數(shù)的讀法是讀所有數(shù)字的基礎。英文數(shù)字中的每一個逗點的讀法也要牢 記:有一個逗點讀“thousand”,兩個逗點讀“million”,三個逗點讀“billion”。還要清楚,每個逗點間 由三位數(shù)組成。英文數(shù)字中的第四位數(shù)、第七位數(shù)、第十位數(shù)是很關(guān)鍵的數(shù)位。

      Examples:

      1,234 讀作:one thousand,two hundred and thirty-four

      4,567,809 讀作:four million,five hundred and sixty-seventhousand,eight hundred and

      nine

      5,678,120,000 讀作:five billion,six hundred and seventy-eight million,one hundred and

      twe nty thousand

      二、“-teen和“-ty”的區(qū)別

      “-teen”和“-ty”是比較容易混淆的一對讀音。我們可以通過音和音素的差異來區(qū)別兩者。含有“-t een ”的詞有兩個重音,即“-teen”要重讀,且“-teen”中的元音為長元音[ti:n],發(fā)音長而清晰;而含有 “-ty”的詞只有一個重音,即“-ty”不重讀,且“-ty ”中的元音為短元音[ti],發(fā)音短而急促。

      Examples:

      fifteen['fif'ti:n] fifty['fifti]

      nineteen['nai'ti:n] ninety['naiti]

      三、英美數(shù)字讀法的差異

      有時,同樣一個數(shù)字,英國人和美國人的讀法也不盡相同,這無疑會使本來就棘手的數(shù)

      字雪上加霜。如: 部分有一個逗點的數(shù)字(四位數(shù)),英國人用“thousand”表示,而美國人則多用“hundred”。再如,有三 個逗點的數(shù)字(十位數(shù)),美式讀法為“billion”,而英式讀法為“thousand million”。因此,熟悉英美 兩種不同的讀法對消除數(shù)字理解上的岐義是

      十分必要的。請看下面的對照表

      例詞 英式 美式 1,900 one thousand,nine hundred nineteen hundred 4,000,000,000

      four thousand million four billion

      再者,英國英語在百位和十位之間加讀“and”,而美國英語往往不用“and”。比如754這個數(shù)字。英國 英語讀成seven hundred andfifty-four,而美國英語則讀為seven hundred

      fifty-four。

      此外,在某些時間表達上,英美也有不同的讀法,這點在下一部分具體說明。

      四、時間的表達法

      表達時間的方法有三種,其中最為普遍的一種是先說分,再加介詞“past”或“to”,然后說小時。若分 數(shù)為15分、30分、45分,則用“quarter”、“half”代替具體的分數(shù)。習慣上,分數(shù)加在30分以內(nèi),用“pa st”,如過了30分,用“to”。美國英語中,常用“after ”代替“past”,用“before”(或till)代替“ to”。

      Examples:

      8:00 讀作:eight o'clock或eight

      9:15 讀作:a qusrter past nine(英式)

      或 a quarter after nine(美式)

      11:30 讀作:half past eleven(英式)

      或 eleven thirty(美式)

      7:50 讀作:ten to eight(英式)

      或 ten before eight(美式)

      表達時間的另一種方法是不用介詞,先說小時數(shù),再說分數(shù)。這種表達法多用于與汽車、火車、輪船、飛 機等相關(guān)的情境中,如發(fā)車時間、到站時間等。

      Examples:

      4:30 p.m.讀作:four-thirty p.m.5:45 p.m.讀作:five-fourty-five p.m.最后一種方法是日常生活中最不常用的24小時制。如:用14:15(fourteen-fifteen)代替2:15 p.m,用 23:05(twenty-three-oh-five)代替11:05 p.m.。這種用法主要出現(xiàn)在官方的時刻表上和電臺的正式報時中。

      五、年、年代、世紀的表達法

      年、年代、世紀的讀法也給中學生帶來不少麻煩,在此,我們將分別舉例說明。

      年的表達用基數(shù)詞,一般有兩種讀法。

      Examples:

      541 B.C.讀作:five four one B.C

      或 five hundred fourty-one

      B.C

      1800 讀作:eighteen hundred

      1701 讀作:seventeen oh one

      或 seveteen hundred and one

      2000 讀作:two thousand

      年代指十年(decade),采用“基數(shù)詞加上十位數(shù)復數(shù)”的形式來表示,前面與介詞“in”

      和定冠詞“th e”搭配。

      Examples:

      in the 1840's 讀作:in the eighteen fourties(十九世紀四十年代)

      in the 1950's 讀作:in the nineteen fifties(二十世紀五十年代)

      in the '60's 讀作:in the sixties(本世紀六十年代)

      如要表示一個年代的初期、中期、末期,可在年代前分別加“early,mid,late”。如:in

      the early 1770's;in the late 1590's。

      世紀指一百年(century),用“the+序數(shù)詞+century”表示。

      Examples:

      in the 2nd century 在二世紀

      in the mid 13th century 在十三世紀中葉

      世紀給人們帶來的一個麻煩是,怎樣確定某年屬于哪個世紀。我們可以簡單地概括為:在百位數(shù)中加1,再 去掉兩位尾數(shù),即得世紀數(shù)。如:725年在百位數(shù)上加1,去掉兩位尾數(shù)25,得8,因此725年屬八世紀。再如: 1103年在百位數(shù)上加1去掉兩位尾數(shù)03,得12,故1103 年屬十二世紀。

      六、序數(shù)詞的特殊用法

      序數(shù)詞是用來表示順序的數(shù)詞。除了幾個特殊的序數(shù)詞(如first,second,third)外,它都是在與之相 應的基數(shù)詞尾加“-th”構(gòu)成的,前面一般要加定冠詞,如the fourth,the

      eighth,the tenth。

      但在談編了號的東西時,仍可用基數(shù)詞來表示順序。

      如果數(shù)字較長,象電話號碼、房間號、住址號、車牌號等,不僅可以用基數(shù)詞代替序數(shù)詞,而且讀的方法 也常常簡化,不用基數(shù)詞通常的讀法,而是將數(shù)字分別單獨讀出來。

      Examples:

      電話號碼 505—6610 讀作:telephone number five oh fivedouble six one oh

      第344房間 讀作:Room three four four

      七、分數(shù)、小數(shù)、百分數(shù)的讀法

      分數(shù)詞是由基數(shù)詞的序數(shù)詞合成的,分子用基數(shù)詞表示,分母用序數(shù)詞表示,除了分子

      是“1”的情況外,序數(shù)詞都要用復數(shù)形式。

      Examples:

      1/3 讀作:one-third

      7/12 讀作:seven-twelfths

      1/2 讀作:a(one)half

      3/4 讀作:three quarters1/2 讀作:two and a half

      比較復雜的分數(shù)讀法如下:

      20/87 讀作:twenty over eighty-seven

      33/90 讀作:thirty-three over ninety

      小數(shù)的讀法:小數(shù)點讀作“point”,小數(shù)后各位數(shù)要分別讀,小數(shù)點前的數(shù)若為“0”可略

      去不讀。

      Examples:

      2.468 讀作:two point four six eight

      0.157 讀作:(zero)point one five seven

      百分數(shù)由“per cent”表示

      Examples:

      20% 讀作:twenty per cent

      16.09% 讀作:sixteen point zero nine per cent

      第五篇:英文5位以上數(shù)字的讀法

      5位以上數(shù)字的讀法

      11,234讀作:eleven thousand two hundred(and),thirty—four

      155,721讀作:one hundred(and)fifty-five thou and seven hundred(and)twenty-one

      6,155,702讀作:six million one hundred(and)fifty-five thousand seven hundred and two

      26,000,008讀作:twenty-six million and eight

      326,414,718讀作:three hundred(and)twenty-six mil-lion,four hundred(and)four teen thousand,seven

      hundred(and)eighteen

      4,302,000,000讀作:four billion three hundred(and)two million

      由以上一組數(shù)字可以看出,多位數(shù)由右向左每3位有一逗號,這個逗號的作用非同小可,在記憶數(shù)字時,它可以幫我們很大的忙!

      逆向第一個逗號讀thousand;向左再推三位,第二個逗號讀million;第三個逗號讀billion;第四個逗號就是trillion。這幾個逗號的作用在于,當我們聽到若干thousand時,立即寫下這個數(shù),并在其后打一個逗號,并留出3位;當聽到若干million,則寫下數(shù)字,并在其后打一逗號,留出6位;聽到若干billion,方法同

      上,在后面留出9位,后面的million、thousand依此法類推,讓所有數(shù)字各就其位。

      例如,當你聽到“twenty thousand and four'’寫出20,“and four”意為后一組僅有個位,即:004,那么,這個數(shù)字完整地寫下來就是20,004;若聽到“six million twenty thousand four hundred and twenty—three,”則第一步先寫:6,020,再將最后一組423寫在第一個逗號后面。完整的翠字為6,020,423。若聽到“One billion,one hundred and four million,twenty thousand four hundred and twenty-three”:主第一步寫出1,104,第二步接下去寫第三組020,第三步二寫423,這樣得到的完整數(shù)字便是1,104,020,423,由此:見這個三位一逗號的作用有多大。只要我們在平時的訓練中加強對三位數(shù)讀寫的訓練,能分辨“ty”與“teen'’,并能借助

      這個不可缺少的“逗號”,無論數(shù)字多么大,也不會對我們造成障礙。

      下載EXCEL 中如何將數(shù)字轉(zhuǎn)換成英文(5篇模版)word格式文檔
      下載EXCEL 中如何將數(shù)字轉(zhuǎn)換成英文(5篇模版).doc
      將本文檔下載到自己電腦,方便修改和收藏,請勿使用迅雷等下載。
      點此處下載文檔

      文檔為doc格式


      聲明:本文內(nèi)容由互聯(lián)網(wǎng)用戶自發(fā)貢獻自行上傳,本網(wǎng)站不擁有所有權(quán),未作人工編輯處理,也不承擔相關(guān)法律責任。如果您發(fā)現(xiàn)有涉嫌版權(quán)的內(nèi)容,歡迎發(fā)送郵件至:645879355@qq.com 進行舉報,并提供相關(guān)證據(jù),工作人員會在5個工作日內(nèi)聯(lián)系你,一經(jīng)查實,本站將立刻刪除涉嫌侵權(quán)內(nèi)容。

      相關(guān)范文推薦