中英数字转换

中英数字转换

常用单位的中英文对照翻译

常用单位的中英文对照翻译 单位 Unit. 单位制 system of units 米 meter (m) 毫米 millimeter (mm) 英尺 foot (ft) 英寸 inch (in) 弧度 radian (rad) 度degree (°) 摄氏 Celsius. (C) 华氏 Fahrenheit (F) 磅/平方英寸 pounds per square inch (psi) 百万帕斯卡 million pascal (MPa) 巴 bar 千克(公斤) kilogram (kg) 克 gram (g) 牛顿 newton (N) 吨 ton (t) 千磅 kilopound (kip) 平方米 square meter (m 2) 方毫米 square millimeter (mm2 ) 立方米 cubic meter (m3 ) 升 liter; litre (L) 转/分 revolutions per minute (rpm) 百万分之一 parts per million (ppm) 焦(耳) Joule (J) 千瓦 kilowatt (kW) 伏(特) volt (V) 安(培) ampere (A) 欧(姆)ohm (Ω) (小)时 hour (h) 分 minute (min) 秒 second (s)

管道组成件专业英语(中英文对照) 1 管道组成件 Piping component 1.1 管子 Pipe 管子(按照配管标准规格制造的) pipe 管子(不按配管标准规格制造的其他用管) tube 钢管 steel pipe 铸铁管 cast iron pipe 衬里管 lined pipe 复合管 clad pipe 碳钢管 carbon steel pipe 合金钢管 alloy steel pipe 不锈钢 stainless steel pipe 奥氏体不锈钢管 austenitic stainless steel pipe 铁合金钢管 ferritic alloy steel pipe 轧制钢管 wrought-steel pipe 锻铁管 wrought-iron pipe 无缝钢管 seamless (SMLS) steel pipe 焊接钢管 welded steel pipe 电阻焊钢管 electric-resistance welded steel pipe 电熔(弧)焊钢板卷管 electric-fusion (arc)-welded steel-plate pipe 螺旋焊接钢管 spiral welded steel pipe 镀锌钢管 galvanized steel pipe 热轧无缝钢管 hot-rolling seamless pipe 冷拔无缝钢管 cold-drawing seamless pipe 水煤气钢管 water-gas steel pipe 塑料管 plastic pipe 玻璃管 glass tube 橡胶管 rubber tube 直管 run pipe; straight pipe 1.2 管件 Fitting 弯头 elbow 异径弯头 reducing elbow 带支座弯头 base elbow k半径弯头 long radius elbow 短半径弯头 short radius elbow

数字转为英文大写

'****************' 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

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

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)

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

实验内容 题目描述 请把输入整数的每位数字转换成英文。如当输入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; }

中英文单位换算

公制 - 英制 Metric to Imperial Units
长度(length) 长度(length)
1 centimetre(cm)厘米 1 metre(m)米 1 metre(m)米 1 kilometre(km)公里 1 kilometre(km)公里
英制 - 公制
= = = = =
0.394 inch(in)英寸 3.28 foot(ft)英尺 1.09 yard(yd)码 4.97 furlong(fur)浪 0.621 mile 英里
重量(Mass) 重量(Mass)
1 gram(g)克 1 kilogram(kg)千克 1 kilogram(kg)千克 1 tonne(t)吨
= = = =
2
0.03527 ounce(oz)盎司 2.20 pound(Ib)磅 0.157 stone 石 0.984 ton 吨
面积(Area) 面积(Area)
2
1 square centimeter(cm )平方厘米
2
= = = = =
0.155 square inch (in )平方英寸
2
1 square centimeter(cm )平方厘米
2
10.8 square foot (ft )平方英尺
2
1 square centimeter(cm )平方厘米 1 hectare(ha)公顷
2
1.20 square yard (yd )平方码 2.47 acre (ac)平方英尺=英亩 0.386 square mile 平方英里
1 square kilometer(km )平方公里
体积(Volume) 体积(Volume)
3 3
1 cubic centimeter (cm )立方厘米
3
1 cubic centimeter (cm )立方厘米
3
1 cubic centimeter (cm )立方厘米
3
1 cubic centimeter (cm )立方厘米
= = = =
0.0610 cubic inch(in )立方英寸
3
35.3 cubic foot(ft )立方英尺
3
0.765 cubic yard(yd )立方码 27.5 bushel(bus)蒲式耳
容积(液体)Volume(fluids) 容积(液体)Volume(fluids)
1 milliliter (ml)毫升 1 milliliter(ml)毫升 1 litre(l)升
= = =
0.0352 fluid ounce(fl oz)液体盎司 1.76 pint(pt)品脱 220 gallon(gal)加仑
力(Force)
1 磅力 Newton(N)牛顿 1 ton-force(tonf)吨力
= =
0.2251 pound-force(1bf) 9.96 kilomiewton (kN)千牛顿

金额大小写转换

金额大小写转换 第一招:釜底抽薪——自动更正法 如果需要重复的输入一个大写数字金额,可以采用自动更正的方法。例如要重复输入“肆仟叁佰伍拾元零伍分”,可以先输入“肆仟叁佰伍拾元零伍分”并选中它,然后执行菜单“工具→自动更正选项”打开“自动更正”对话框,在“替换”下的框内输入“4350.05”并单击“添加”按钮确定后退出,以后直接输入“4350.05”后回车即可快速得到“肆仟叁佰伍拾元零伍分”。 第二招:一劳永逸——编制自动宏 如果有许多小写金额要变成大写的话,用上面的自动更正的方法需要定义很多自动更正项,显然也比较麻烦,其实只需要编辑一个宏就能做到“一劳永逸”了。启动Word后按下A lt+F11组合键,在打开的工程窗口左侧双击“ThisDocument”进入代码编写窗口,在代码编辑窗口中输入如下代码: Option Explicit Sub 小写金额变大写() Dim Numeric As Currency, IntPart As Long, DecimalPart As Byte, MyField As Field, Lable As String Dim Jiao As Byte, Fen As Byte, Oddment As String, Odd As String, MyChinese As String Const ZWDX As String = "壹贰叁肆伍陆柒捌玖零" '定义一个中文大写汉字常量 On Error Resume Next '错误忽略 With Selection Numeric = VBA.Round(VBA.V al(.Text), 2) '四舍五入保留小数点后两位 '判断是否在表格中 If .Information(wdWithInTable) Then _ .MoveRight unit:=wdCell Else .MoveRight unit:=wdCharacter '对数据进行判断,是否在指定的范围内 If VBA.Abs(Numeric) > 2147483647 Then MsgBox "数值超过范围!", _ vbOKOnly + vbExclamation, "Warning": Exit Sub IntPart = Int(VBA.Abs(Numeric)) '定义一个正整数 Odd = VBA.IIf(IntPart = 0, "", "圆") '定义一个STRING变量 '插入中文大写前的标签 Lable = VBA.IIf(Numeric = VBA.Abs(Numeric), "人民币金额大写:", "人民币金额大写:负") '对小数点后面二位数进行择定 DecimalPart = (VBA.Abs(Numeric) - IntPart) * 100 Select Case DecimalPart Case Is = 0 '如果是0,即是选定的数据为整数 Oddment = VBA.IIf(Odd = "", "", Odd & "整") Case Is < 10 '<10,即是零头是分 Oddment = VBA.IIf(Odd <> "", "圆零" & VBA.Mid(ZWDX, DecimalPart, 1) & "分", _ VBA.Mid(ZWDX, DecimalPart, 1) & "分") Case 10, 20, 30, 40, 50, 60, 70, 80, 90 '如果是角整 Oddment = "圆" & VBA.Mid(ZWDX, DecimalPart / 10, 1) & "角整" Case Else '既有角,又有分的情况

常用单位转换一览表(二年级)

數學科常用單位轉換一覽表(二年級) 一.長度單位: 單位名稱代号進率 公里km 米m 1米=100厘米 厘米cm 毫米mm 二.重量單位: 單位名稱代号進率 公斤kg 1公斤=1000克 克g 磅lb 三.時間單位: 平年二月有28日、閏年二月有29日 註:(公元年份可被4整除的是閏年,否則是平年。) 月大有:一月、三月、五月、七月、八月、十月、十二月各有31日 月小有、四月、六月、九日、十一月各有30日 1 (平) 年=365日 1 (閏) 年=366日1年=12月1星期=7日1日=24小時1小時=60分1分=60秒

1日=24小時=24小時 60(分鐘)=1440分=1440分 60(秒)= 86 400秒1小時= 60分=3600秒 四.乘數表: 1 2 3 4 5 1x1=1 1x2=2 1x3=3 1x4=4 1x5=5 1x6=6 1x7=7 1x8=8 1x9=9 1x10=10 2x1=2 2x2=4 2x3=6 2x4=8 2x5=10 2x6=12 2x7=14 2x8=16 2x9=18 2x10=20 3x1=3 3x2=6 3x3=9 3x4=12 3x5=15 3x6=18 3x7=21 3x8=24 3x9=27 3x10=30 4x1=4 4x2=8 4x3=12 4x4=16 4x5=20 4x6=24 4x7=28 4x8=32 4x9=36 4x10=40 5x1=5 5x2=10 5x3=15 5x4=20 5x5=25 5x6=30 5x7=35 5x8=40 5x9=45 5x10=50 6 7 8 9 10 6x1=6 6x2=12 6x3=18 6x4=24 6x5=30 6x6=36 6x7=42 7x1=7 7x2=14 7x3=21 7x4=28 7x5=35 7x6=42 7x7=49 8x1=8 8x2=16 8x3=24 8x4=32 8x5=40 8x6=48 8x7=56 9x1=9 9x2=18 9x3=27 9x4=36 9x5=45 9x6=54 9x7=63 10x1=10 10x2=20 10x3=30 10x4=40 10x5=50 10x6=60 10x7=70

英语数字换算

三、数词组成的常用短语 这类短语大多是由数词和介词搭配而成,或是数词和其他词类搭配而成,常用来表示不确定的范围和概念,有时也可表示事物所处的状态或其他情况。例如: 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 少许;几个

常用单位的中英文对照翻译

精心整理常用单位的中英文对照翻译 单位Unit. 单位制systemofunits 米meter(m) 毫米millimeter(mm) 英尺foot(ft) 英寸inch(in) 弧度radian(rad) 度 摄氏 华氏 巴bar 克 牛顿 吨 千磅 平方米 方毫米 立方米 升 转/分 焦(耳) 千瓦 伏(特)volt(V) 安(培)ampere(A) 欧(姆)ohm(Ω) (小)时hour(h) 分minute(min) 秒second(s) 管道组成件专业英语(中英文对照)

1管道组成件Pipingcomponent 1.1管子Pipe 管子(按照配管标准规格制造的)pipe 管子(不按配管标准规格制造的其他用管)tube 钢管steelpipe 铸铁管castironpipe 衬里管linedpipe 复合管cladpipe 碳钢管carbonsteelpipe 合金钢管 不锈钢 轧制钢管 锻铁管 无缝钢管 焊接钢管 镀锌钢管 塑料管 玻璃管 橡胶管 直管 1.2管件Fitting 弯头elbow 异径弯头reducingelbow 带支座弯头baseelbow k半径弯头longradiuselbow 短半径弯头shortradiuselbow 长半径180°弯头longradiusreturn 短半径180°弯头shortradiusreturn 带侧向口的弯头(右向或左向)sideoutletelbow(righthandorlefthand)

三通tee 异径三通reducingtee 等径三通straighttee 带侧向口的三通(右向或左向)sideoutlettee(righthandor1efthand) 异径三通(分支口为异径)reducingtee(reducingonoutlet) 异径三通(一个直通口为异径)reducingtee(reducingononerun) 带支座三通basetee 异径三通(一个直通口及分支口为异径)reducingtee(reducingononerunandoutlet) 异径三通(两个直通口为异径,双头式)reducingtee(reducingonbothruns,bullhead) 45 Y 四通 等径四通 异径四通 异径管 弯头支管台elbolet 斜接支管台latrolet 镶入式支管嘴sweepolet 短管支管台nipolet 支管台.插入式支管台boss 管接头coupling,fullcoupling 半管接头halfcoupling 异径管接头reducingcoupling 活接头union

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

英语中数字表示 在汉英笔译和英语写作中,经常会遇到数字;哪些场合用单词表示,哪些场合用阿拉伯数字表示,往往让人难以确定,现行语法书中也极少涉及此类问题。实际上,以英语为母语的国家,在书写数字时已形成几条约定俗成的规则,现总结如下供读者参考。 一、英美等国的出版社在排版时遵循一条原则,即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

中英制基本单位换算

流程 Board cut 开料Carbon printing 碳油印刷Inner dry film 内层干膜Peelable blue mask 蓝胶 Inner etching 内层蚀刻 ENIG(Electroless nickel immersion gold) 沉镍金Inner dry film stripping 内层干膜退膜HAL(hot air leveling) 喷锡 AOI(Automatic Optical Inspection)自动光学检测 OSP(Organic solderability preservative)有机保焊Pressing 压板Punching 啤板Drilling 钻孔Profiling 外形加工Desmear 除胶渣,去钻污 E-Test 电性测试PTH 镀通孔,沉铜FQC(final quality control) 最终品质控制 Panel plating 整板电镀FQA(Final quality audit) 最终品质保证 Outer dry film 外层干膜Packing 包装Etching 蚀刻IPQA(In-process quality audit) 流程QA Tin stripping 退锡IPQC(In-process quality control) 流程QC EQC(QC after etching)蚀检QC IQC(Incoming quality control) 来料检查 Solder mask 感阻MRB(material review board) 材料评审委员会Component mark 字符QA(Quality assurance) 品质保证Physical Laboratory 物理实验室QC(Quality control) 品质控制

常用单位转换计算公式

1焦耳=1020千克·米=*10-7千瓦·小时=*10-7公制马力小时=*10-7英制马力小时=*10-4千卡=*10-4英热单位 1卡(cal)=焦耳(J) 1英热单位(Btu)=焦耳(J) 1千克力米(kgf·m)=焦耳(J) 1英尺磅力(ft·1bt)=焦耳(J) 1米制马力小时(hp·h)=*106焦耳(J) 1英制马力小时(UKHp·h) =*106焦耳(J) 1千瓦小时(kw·h)=*106焦耳(J) 1大卡=焦耳(J) 长度 1千米(km)=英里(mile) 1米(m)=英尺(ft)=1.094码(yd) 1厘米(cm)=英寸(in) 1英里(mile)=千米(km) 1英尺(ft)=0.3048米(m) 1英寸(in)=厘米(cm) 1海里(n mile)=千米(km) 1码(yd)= 144米(m) 1英尺(ft)=12英寸(in) 1码(yd)=3英尺(ft) 1英里(mile)=5280英尺(ft) 1海里(n mile)=英里(mile) 质量 1吨(t)=1000千克(kg)=2205磅(lb)= 短吨=长吨 1千克(kg)=2.205磅(lb) 1短吨=吨(t)=2000磅(1b) 1长吨=吨(t) 1磅(lb)=千克(kg) 1盎司(oz)=28.350克(g) 密度 1千克/米3(kg/m3)=0.001克/厘米3(g/cm3)=0.0624磅/英尺3(lb/ft3) 1磅/英尺3(lb/ft3)=千克/米3(kg/m3) 1磅/英寸3(lb/in3)=千克/米3(kg/m3) 1磅/美加仑(lb/gal)=千克/米3(kg/m3) 1磅/英加仑(lb/gal)=千克/米3(kg/m3) 1磅/(石油)桶(lb/bbl)=千克/米3(kg/m3) 1波美密度=140/15.5℃时的比重-130 API=15.5℃时的比重

数字翻译方法

一、英译中 如果你听到下面一群复杂的数字,你该怎么记录呢? 例: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 有了逗号和竖线的辅助,从某种程度上说,长的数字也会变得容易记录和表达了。

常用英制单位与国际单位换算

常用英制单位和国际单位换算 in 英寸, ft 英尺,yd 码, mi 英里,kips 千磅,lb 磅,ounce 盎司,hundredweight(cwt)英担,ton 英吨, carat 克拉,nautical mile 海里,square 平方,pint 品脱,quart 夸脱,gallon 加仑,peck 配克,bushel 蒲式耳,psi (pounds per square inch)磅/平方英寸,bar 巴,mbar 毫巴,atm 标准大气压 1. 英制单位换成国际单位 (1)长度单位:Linear Measure 1 in = 25.4 mm 1 ft = 0.3048 m 1 mile = 1609.3 m 1 micron =10-6 m 1 英寸=2.5400 厘米;1 英尺=1 2 英寸=0.3048 米 1 英里=1760 码=1609.3 米;1 码=3 英尺=0.9144 米 1 海里 =1852米 (2)质量单位: 1 lb = 453.6 1 cwt = 50.8 Kg 1 ton(imp) = 1016 Kg 1 top(up) = 907. 2 Kg 1 tonne = 1000 Kg 1 磅=16 盎司=0.4536 千克;1 英担=11 2 磅=50.802 千克; 1 英吨=2240 磅=1016.1千克;1 美吨=2000 磅=907. 2 千克; 1 盎司=437.5 谷=28.350 克; 1 美担=100 磅=45.359 千克; 1克拉 =0.2 克 (3)力矩单位 1 inlb = 0.113 Nm 1 ftlb = 1.356 Nm 1 kgm = 9.807 Nm 1 ft poundal = 0.0421 Nm (4)温度单位 (? F- 32) x 5/9 = ? C K-273.15 = ? C (5)功及能量单位 1 lbft = 1.356 J 1 Nm = 1 J 1 kgm = 9.807 J 1 kW/hr = 3.6 MJ (6)面积单位:Square Measure

阿拉伯数字转换成英文大写

启动Microsoft Excel。 按Alt+F11 启动Visual Basic 编辑器。 在“插入”菜单上,单击“模块”。 在模块表中键入下面的代码。 Option Explicit 'Main Function Function SpellNumber(ByValMyNumber) Dim Dollars, Cents, Temp Dim DecimalPlace, Count ReDimPlace(9) As String 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 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 Select Case Cents

常用公式大全及单位换算表

常用公式及单位换算表 一、长度单位转换公式: 公里(km) 千米(km) 米(m) 分米(dm) 厘米(cm) 毫米(mm) 微米(um) 纳米(nm) 1 公里(km) =1千米 (km) 1 公里(km) = 1000 米(m) 1千米 (km) =1000米(m) 1米(m)=10分米(dm) 1分米(dm)=10厘米(cm) 1厘米(cm)=10毫米(mm) 1米(m)= 10 分米(dm) =100厘米(cm) = 1000 毫米(mm) 1 毫米(mm) = 1000 微米(um) = 1000000 纳米(nm) 1公里(km)=1千米(km)=1000米(m)=10000分米(dm) =100000厘米(cm) =1000000毫米(mm) 二、重量单位换算: 吨( t ) 千克 (kg) 克( g ) 1千克 (kg)=1公斤 (kg) 1千克 (kg)=1000克( g ) 1吨( t )=1000千克 (kg) 1吨( t )=1000千克 (kg) =1000000克( g ) 1公斤=500克 1市斤=10两 1两=50克 三、时间单位换算: 1日=24小时 1时=60分 1分=60秒 1时=3600秒 1世纪=100年 1年=12月 大月(31天)有:1、3、5、7、8、10、12月 小月(30天)的有:4、6、9、11月 平年2月28天,平年全年365天,闰年2月29天,闰年全年366天

四、面积换算: 平方公里(km2)公顷(ha)平方米(m2) 1平方千米(平方公里)=100公顷=1000000平方米 1 公顷 = 0.01 平方公里(平方千米) 1公顷=10000平方米1平方米=100平方分米 1平方分米=100平方厘米 1平方厘米=100平方毫米 1公顷=15亩=100公亩=10000平方米 1公亩=100平方米 1亩=60平方丈=6000平方尺 1(市)亩=666.66平方米 五、几何形体周长面积体积计算公式: 三角形的面积=底×高÷2。公式S=a×h÷2 正方形的周长=边长×4 公式C=4a 正方形的面积=边长×边长公式S=a×a 长方形的周长=(长+宽)×2 公式 C=(a+b)×2 长方形的面积=长×宽公式S=a×b 平行四边形的面积=底×高公式S=a×h 梯形的面积=(上底+下底)×高÷2 公式S=(a+b)h÷2 内角和:三角形的内角和=180度。 长方体的体积=长×宽×高公式:V=abh 长方体(或正方体)的体积=底面积×高公式:V=abh 正方体的体积=棱长×棱长×棱长公式:V=aaa

相关文档
最新文档