说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 花键齿数
1)  spline tooth number
花键齿数
2)  spline teeth
花键齿
1.
In this paper, we deduced the calculation formulas of bending, shearing and extruding deformation of spline teeth, by using the deformation models of single-gear engaging that we have set up.
利用建立的花键齿单齿啮合的弯曲和挤压变形模型,推导出单齿啮合的弯曲、剪切和挤压变形的计算公式;针对花键齿齿距误差为正弦规律分布的假设,应用数理统计的方法,研究了花键齿承载能力与加工精度间的数值关系;并根据上述理论,对汽车扭杆弹簧端部花键齿的实例,编制程序进行了分析计算。
3)  spline gear
花键齿轮
1.
A new method of parameterized modeling of spline gear based on Pro/E
基于Pro/E的花键齿轮参数化建模新方法
4)  tooth spline
齿形花键
5)  spline [英][splain]  [美][splaɪn]
花键,齿槽
6)  spline tooth area
花键齿面
补充资料:水仙花数

水仙花数是指一种三位数,其各个数之立方和等于该数。

水仙花数共有4个,分别为:153370371407

( 例如:1^3 + 5^3 + 3^3 = 153 )

c语言的"水仙花数"实现代码:

void main()

{

int ge,shi,bai,number;

for(number=100;number<1000;number++)

{

bai=number/100;

shi=(number%100)/10;

ge=number%10;

if(number==bai*bai*bai+shi*shi*shi+ge*ge*ge) printf("\nnumber=%d\n",number);

}

getch();

}

visual basic的"水仙花数"实现代码:

private sub form_click()

dim a, b, c as integer 'a(个)b(十)c(百)

for a = 0 to 9

for b = 0 to 9

for c = 1 to 9

if a ^ 3 + b ^ 3 + c ^ 3 = a + 10 * b + 100 * c then

msgbox 100 * c + 10 * b + a

end if

next c

next b

next a

end sub

fortran的"水仙花数"实现代码:

write(*,30)

do 10 k=100,999

ia=k/100

ib=mod(k,100)/10

ic=mod(k,10)

if(k.ne.ia**3+ib**3+ic**3) goto 10

write(*,20)k, ia,ib,ic

10 continue

20 format(5x,4i4)

30 format(5x,18hn=i**3+j**3+k**3)

stop

end

pascal:

program shuixianhuashu;

var

a,b,c:integer;

begin

for a:=1 to 9 do

for b:=0 to 9 do

for c:=0 to 9 do

if a*a*a+b*b*b+c*c*c=100*a+10*b+c then writeln(100*a+10*b+c);

用c语言for循环求解该问题的代码

  1. include "stdio.h"

int main(void)

{

int a,b,c;

for(a=1;a<=9;a++)

for(b=0;b<=9;b++)

for(c=0;c<=9;c++)

if(100*a+10*b+c==a*a*a+b*b*b+c*c*c)

printf("%d%d%d ",a,b,c);

}

end.

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条