克隆管理员账号

Posted in Hack on 02月 21st, 2012 by Strong

方法一、经常看到一些人在入侵一台Windows 2000或者Windows NT后堂而皇之地创建一个管理员组的用户,似 乎当管理员不存在一般,今天偶违背一下偶以前的初衷,Share一个类似于RootKit的玩艺,当然,这些 过程也是可以用脚本实现的,但是我就不写了,OK,Show Time Now。


首先要让大家知道的概念是在Windows 2000和Windows NT里,默认管理员帐号的SID是固定的 500(0x1f4),那么我们可以用机器里已经存在的一个帐号将SID为500的帐号进行克隆,在这里我们选 择的帐号是IUSR_MachineName(当然,为了加强隐蔽性,我们选择了这个帐号,所有用户都可以用以下 的方法,只不过这个用户较常见罢了),测试环境为Windows 2000 Server。

运行一个System的CMD Shell( http://www.sometips.com/tips/scripts/173.htm 或使用 Http:// www.sometips.com/soft/psu.exe),然后在该CMD Shell里面运行 
regedit /e adam.reg HKEY_LOCAL_MACHINE\SAM\SAM\Domains\Account\Users\000001F4 
这样我们将SID 为500的管理员帐号的相关信息导出,然后编辑adam.reg文件,将adam.reg文件的第三行– [HKEY_LOCAL_MACHINE\SAM\SAM\Domains\Account\Users\000001F4]最后的”1F4″修改为 IUSR_MachineName的SID(大部分的机器该用户的SID都为0x3E9,如果机器在最初安装的时候没有安装 IIS,而自己创建了帐号后再安装IIS就有可能不是这个值),将Root.reg文件中的”1F4″修改为”3E9″后执 行 
regedit /s adam.reg 
导入该Reg文件

然后运行 
net user IUSR_MachineName Sometips 
修改IUSR_MachineName的密码(最好使用14位的密码,越像IUSR_MachineName的密码越好)

OK,大功告成…

这样,我们拥有和默认管理员一样的桌面、一样的Profile….. 
而且,当我们运行 net localgroup administrators 时,看看结果: 
C:\>net localgroup administrators 
Alias name administrators 
Co****dministrators have complete and unrestricted access to the computer/domain

Members

———————————————————————— 
Administrator 
The command completed successfully.

再看看USER2SID的输出结果: 
C:\>user2sid Administrator

S-1-5-21-1004336348-1078145449-854245398-500

Number of subauthorities is 5 
Domain is IDONTKNOW 
Length of SID in memory is 28 bytes 
Type of SID is SidTypeUser

C:\>user2sid iusr_machinename

S-1-5-21-1004336348-1078145449-854245398-1001

Number of subauthorities is 5 
Domain is IDONTKNOW 
Length of SID in memory is 28 bytes 
Type of SID is SidTypeUser

我想,再高明的管理员也看不到任何的异状了…而且,随便管理员改成什么密码,我照样可以用 IUSR_MachineName,密码为Sometips登陆…(没有哪位大侠级的管理员喜欢经常修改IUSR_MachineName 为其他的名字吧)

^_^,这算不算RootKit…

二、克隆账号的原理与危害

1.克隆账号的原理

在注册表中有两处保存了账号的SID相对标志符,一处是注册表HKEY_LOCAL_MACHINESAMAMDomainsAccountUsers 下的子键名,另一处是该子键的子项F的值。但微软犯了个不同步它们的错误,登录时用的是后者,查询时用前者。当用Administrator的F项覆盖其他账号的F项后,就造成了账号是管理员权限,但查询还是原来状态的情况,这就是所谓的克隆账号。

安全小知识:SID也就是安全标识符(Security Identifiers),是标识用户、组和计算机账户的唯一的号码。在第一次创建该账户时,将给网络上的每一个账户发布一个唯一的 SID。Windows 2000 中的内部进程将引用账户的 SID 而不是账户的用户或组名。如果创建账户,再删除账户,然后使用相同的用户名创建另一个账户,则新账户将不具有授权给前一个账户的权力或权限,原因是该账户具有不同的 SID 号。

2. 克隆账号的危害

当系统用户一旦被克隆,配合终端服务,就等于向攻击者开启了一扇隐蔽的后门,让攻击者可以随时进入你的系统,这一扇门你看不到,因为它依靠的是微软的终端服务,并没有释放病毒文件,所以也不会被杀毒软件所查杀。

克隆用户的常用方法

1.手工克隆方法一

在Windows 2000/xp/2003和Windows NT里,默认管理员账号的SID是固定的500(0x1f4),那么我们可以用机器里已经存在的一个账号将SID为500的账号进行克隆,在这里我们选择的账号是IUSR_XODU5PTT910NHOO(XODU5PTT910NHOO为已被攻陷的服务器机器名。为了加强隐蔽性,我们选择了这个账号,所有用户都可以用以下的方法,只不过这个用户较常见罢了)

我们这里要用到的一个工具是PsExec,一个轻型的 telnet 替代工具,它使您无需手动安装客户端软件即可执行其他系统上的进程,并且可以获得与控制台应用程序相当的完全交互性。PsExec 最强大的功能之一是在远程系统和远程支持工具(如 IpConfig)中启动交互式命令提示窗口,以便显示无法通过其他方式显示的有关远程系统的信息。

执行:psexec -i -s -d cmd运行一个System的CMD Shell,如图1所示


得到一个有system权限的cmd shell,然后在该CMD Shell里面运行“regedit /e admin.reg HKEY_LOCAL_MACHINESAMSAMDomainsAccountUsers00001F4”,这样我们将SID为500(0x1f4)的管理员账号的相关信息导出。

然后编辑admin.reg文件,将admin.reg文件的第三行HKEY_LOCAL_MACHINESAMSAMDomainsAccountUsers00001F4中的“1F4”修改为IUSR_XODU5PTT910NHOO的SID,将文件中的“1F4”修改为“3EB”,如图3所示。


注意:大部份机器里IUSR_MACHINE用户的SID都为0x3E9(如果机器在最初安装的时候没有安装IIS,而是自己创建了账号后再安装IIS就有可能不是这个值了),如果不确定,可以使用:

“regedit /e sid.reg HKEY_LOCAL_MACHINESAMSAMDomainsAccountUsersNamesIUSR_MACHINE”命令先导出注册表,然后编辑sid.reg文件,就可以看到SID为“3EB”,如图5所示。


2.手工克隆方法二

另外一种克隆账户的方法是:首先运行regedt32.exe,展开注册表到HKEY_LOCAL_MACHINESAMSAM,然后点菜单栏的“编辑”→“权限”(Windows 2000是菜单栏的“安全”→“权限”),会弹出“SAM的权限”窗口,点击Administrators,在该窗口中勾选允许完全控制,(Windows 2000是在该窗口中勾选“允许将来自父系的可继承权限传播给该对象”)然后点击“确定”按钮。如图6所示。

再找到HKEY_LOCAL_MACHINESAMSAMDomainsAccountUsers0001F4,双击右边窗口中的“F”项,如图7所示。

选取全部内容,然后点击鼠标右键选“复制”,再打开HKEY_LOCAL_MACHINESAMSAMDomainsAccountUsers0003EB下的F项,将刚才复制的内容粘贴进去,这样我们就将IUSR_XODU5PTT910NHOO账号克隆成了管理员,再将刚才SAM目录的权限给删掉,以免被人发现。

3.使用mt克隆

mt.exe是一款非常强大的网络工具,它主要以命令行方式执行,可以开启系统服务,检查用户以及直接显示用户登陆密码等。它就象一把双刃剑,入侵者和系统管理员都要使用它,但由于常被入侵者使用,所以被很多杀毒软件列为病毒。

关于MT的详细测试报告可以到http://www.antian365.com/bbs/viewthread.php?tid=2786&extra=page%3D1&frombbs=1了解。克隆用户的用法如下:

mt -clone

如:mt -clone adminstrator IUSR_XODU5PTT910NHOO

如图8所示。


就是把管理员账号administrator克隆为IUSR_XODU5PTT910NHOO账号。最后执行“net user IUSR_XODU5PTT910NHOO n3tl04d”命令,修改IUSR_XODU5PTT910NHOO的密码为n3tl04d。

4.使用AIO克隆

AIO(All In One)是WinEggDrop写的一个把很多小工具功能集成一体的一个“工具”,其中有克隆用户、修改服务的启动类型、删除系统账户、检查系统隐藏服务、端口扫描和端口转发等等。

使用AIO克隆很简单,就是: Aio.exe -Clone 正常账号 要被克隆账户 密码

如: Aio.exe -Clone Administrator IUSR_XODU5PTT910NHOO n3tl04d

这样就可以用IUSR_XODU5PTT910NHOOn3tl04d作为管理员登录了。

如图9所示。

5.使用CA克隆

ca.exe 小榕编写的一个远程克隆账号工具,当然本地克隆也没问题。

用法如下:ca ip地址 管理员用户名 管理员密码 克隆的用户 密码

如:ca 127.0.0.1 administrator 123456 IUSR_XODU5PTT910NHOO 123456

如图10所示。


6.建立隐藏账号

需要使用的工具叫adhider,是锦毛鼠写的一个专门建立隐藏用户的工具。此工具有个缺点,那就是当服务器重启后,用户就隐藏不了,会在用户管理中显示出来。

用法如下:adhider 用户名 密码

如:adhider n3tl04d$123456

如图11所示。

创建成功后就可以使用

n3tl04d$123456登录,得到和管理员权限。

7.使用clone克隆

clone是28度的冰写的一个克隆工具,只支持windows2003和windowsxp,不支持windows2000。此工具有个缺点,那就是当服务器重启后,用户就隐藏不了,会在用户管理中显示出来。

用法如下:Clone.exe 用户名 密码

如:clone n3tl04d 520mm

如图12所示。

就可以使用n3tl04d520mm登录,得到和管理员权限。

注意:在Windows 2003下如果使用clone克隆后,再使用MT检查,会提示你没有系统权限,此时需要重启电脑或者运行一个有system权限的cmd才能使用MT检查。

三、克隆用户安全检查与防范

当系统用户被克隆之后,更改管理员也无济于事,服务器上面的信息和数据还是被攻击者随意窃取。所以必须把克隆的用户清除,再做其它方面的安全检查。

在检查是否存在克隆用户前,最好重启一下系统。对于上面第六和第七种方法克隆的,就会在用户管理里显示出来了,一看就知道。如图13所示。

如果发现有克隆账号,可以用mt或AIO软件进行删除。

1.使用MT检查

在cmd命令行下,使用“mt–chkuser”命令,检查系统克隆账号,输入命令后,会在屏幕中输出结果,主要查看ExpectedSID和CheckedSID,如果这两个值不一样则说明账号被克隆了。如图14所示。

从图中可以看出,IUSR_XODU5PTT910NHOO用户的ExpectedSID和CheckedSID不一样,且它的CheckedSID值是和管理员administrator的CheckedSID值一样,很明显IUSR_XODU5PTT910NHOO是一个克隆的账号。

从图中可以看出,IUSR_XODU5PTT910NHOO用户的ExpectedSID和CheckedSID不一样,且它的CheckedSID值是和管理员administrator的CheckedSID值一样,很明显IUSR_XODU5PTT910NHOO是一个克隆的账号

网页计数器 源码

Posted in 日志 on 02月 21st, 2012 by Strong


<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″>
<style type=text/css>
td,body {  font-size: 13px;}body{
margin-top:0px;
margin-left:0px;
margin-right:0px;
background-color: #fcfff7;
}
</style>
<title>计算器</title>
<SCRIPT language=javascript>
<!–
var endNumber=true
var mem=0
var carry=10
var hexnum=”0123456789abcdef”
var angle=”d”
var stack=”"
var level=”0″
var layer=0
//数字键
function inputkey(key)
{
var index=key.charCodeAt(0);
if ((carry==2 && (index==48 || index==49))
|| (carry==8 && index>=48 && index<=55)
|| (carry==10 && (index>=48 && index<=57 || index==46))
|| (carry==16 && ((index>=48 && index<=57) || (index>=97 && index<=102))))
if(endNumber)
{
endNumber=false
document.calc.display.value = key
}
else if(document.calc.display.value == null || document.calc.display.value == “0″)
document.calc.display.value = key
else
document.calc.display.value += key
}
function changeSign()
{
if (document.calc.display.value!=”0″)
if(document.calc.display.value.substr(0,1) == “-”)
document.calc.display.value = document.calc.display.value.substr(1)
else
document.calc.display.value = “-” + document.calc.display.value
}
//函数键
function inputfunction(fun,shiftfun)
{
endNumber=true
if (document.calc.shiftf.checked)
document.calc.display.value=decto(funcalc(shiftfun,(todec(document.calc.display.value,carry))),carry)
else
document.calc.display.value=decto(funcalc(fun,(todec(document.calc.display.value,carry))),carry)
document.calc.shiftf.checked=false
document.calc.hypf.checked=false
inputshift()
}
function inputtrig(trig,arctrig,hyp,archyp)
{
if (document.calc.hypf.checked)
inputfunction(hyp,archyp)
else
inputfunction(trig,arctrig)
}
//运算符
function operation(join,newlevel)
{
endNumber=true
var temp=stack.substr(stack.lastIndexOf(“(“)+1)+document.calc.display.value
while (newlevel!=0 && (newlevel<=(level.charAt(level.length-1))))
{
temp=parse(temp)
level=level.slice(0,-1)
}
if (temp.match(/^(.*\d[\+\-\*\/\%\^\&\|x])?([+-]?[0-9a-f\.]+)$/))
document.calc.display.value=RegExp.$2
stack=stack.substr(0,stack.lastIndexOf(“(“)+1)+temp+join
document.calc.operator.value=” “+join+” “
level=level+newlevel
}
//括号
function addbracket()
{
endNumber=true
document.calc.display.value=0
stack=stack+”(“
document.calc.operator.value=”   “
level=level+0
layer+=1
document.calc.bracket.value=”(=”+layer
}
function disbracket()
{
endNumber=true
var temp=stack.substr(stack.lastIndexOf(“(“)+1)+document.calc.display.value
while ((level.charAt(level.length-1))>0)
{
temp=parse(temp)
level=level.slice(0,-1)
}
document.calc.display.value=temp
stack=stack.substr(0,stack.lastIndexOf(“(“))
document.calc.operator.value=”   “
level=level.slice(0,-1)
layer-=1
if (layer>0)
document.calc.bracket.value=”(=”+layer
else
document.calc.bracket.value=”"
}
//等号
function result()
{
endNumber=true
while (layer>0)
disbracket()
var temp=stack+document.calc.display.value
while ((level.charAt(level.length-1))>0)
{
temp=parse(temp)
level=level.slice(0,-1)
}
document.calc.display.value=temp
document.calc.bracket.value=”"
document.calc.operator.value=”"
stack=”"
level=”0″
}
//修改键
function backspace()
{
if (!endNumber)
{
if(document.calc.display.value.length>1)
document.calc.display.value=document.calc.display.value.substring(0,document.calc.display.value.length – 1)
else
document.calc.display.value=0
}
}
function clearall()
{
document.calc.display.value=0
endNumber=true
stack=”"
level=”0″
layer=”"
document.calc.operator.value=”"
document.calc.bracket.value=”"
}
//转换键
function inputChangCarry(newcarry)
{
endNumber=true
document.calc.display.value=(decto(todec(document.calc.display.value,carry),newcarry))
carry=newcarry
document.calc.sin.disabled=(carry!=10)
document.calc.cos.disabled=(carry!=10)
document.calc.tan.disabled=(carry!=10)
document.calc.bt.disabled=(carry!=10)
document.calc.pi.disabled=(carry!=10)
document.calc.e.disabled=(carry!=10)
document.calc.kp.disabled=(carry!=10)
document.calc.k2.disabled=(carry<=2)
document.calc.k3.disabled=(carry<=2)
document.calc.k4.disabled=(carry<=2)
document.calc.k5.disabled=(carry<=2)
document.calc.k6.disabled=(carry<=2)
document.calc.k7.disabled=(carry<=2)
document.calc.k8.disabled=(carry<=8)
document.calc.k9.disabled=(carry<=8)
document.calc.ka.disabled=(carry<=10)
document.calc.kb.disabled=(carry<=10)
document.calc.kc.disabled=(carry<=10)
document.calc.kd.disabled=(carry<=10)
document.calc.ke.disabled=(carry<=10)
document.calc.kf.disabled=(carry<=10)
}
function inputChangAngle(angletype)
{
endNumber=true
angle=angletype
if (angle==”d”)
document.calc.display.value=radiansToDegress(document.calc.display.value)
else
document.calc.display.value=degressToRadians(document.calc.display.value)
endNumber=true
}
function inputshift()
{
if (document.calc.shiftf.checked)
{
document.calc.bt.value=”deg ”
document.calc.ln.value=”exp ”
document.calc.log.value=”expd “
if (document.calc.hypf.checked)
{
document.calc.sin.value=”ahs ”
document.calc.cos.value=”ahc ”
document.calc.tan.value=”aht ”
}
else
{
document.calc.sin.value=”asin “
document.calc.cos.value=”acos “
document.calc.tan.value=”atan “
}
document.calc.sqr.value=”x^.5 “
document.calc.cube.value=”x^.3 “
document.calc.floor.value=” 小数 “
}
else
{
document.calc.bt.value=”d.ms “
document.calc.ln.value=” ln ”
document.calc.log.value=” log “
if (document.calc.hypf.checked)
{
document.calc.sin.value=”hsin “
document.calc.cos.value=”hcos “
document.calc.tan.value=”htan “
}
else
{
document.calc.sin.value=”sin ”
document.calc.cos.value=”cos ”
document.calc.tan.value=”tan ”
}
document.calc.sqr.value=”x^2 ”
document.calc.cube.value=”x^3 ”
document.calc.floor.value=” 取整 “
}
}
//存储器部分
function clearmemory()
{
mem=0
document.calc.memory.value=”   “
}
function getmemory()
{
endNumber=true
document.calc.display.value=decto(mem,carry)
}
function putmemory()
{
endNumber=true
if (document.calc.display.value!=0)
{
mem=todec(document.calc.display.value,carry)
document.calc.memory.value=” M “
}
else
document.calc.memory.value=”   “
}
function addmemory()
{
endNumber=true
mem=parseFloat(mem)+parseFloat(todec(document.calc.display.value,carry))
if (mem==0)
document.calc.memory.value=”   “
else
document.calc.memory.value=” M “
}
function multimemory()
{
endNumber=true
mem=parseFloat(mem)*parseFloat(todec(document.calc.display.value,carry))
if (mem==0)
document.calc.memory.value=”   “
else
document.calc.memory.value=” M “
}
//十进制转换
function todec(num,oldcarry)
{
if (oldcarry==10 || num==0) return(num)
var neg=(num.charAt(0)==”-”)
if (neg) num=num.substr(1)
var newnum=0
for (var index=1;index<=num.length;index++)
newnum=newnum*oldcarry+hexnum.indexOf(num.charAt(index-1))
if (neg)
newnum=-newnum
return(newnum)
}
function decto(num,newcarry)
{
var neg=(num<0)
if (newcarry==10 || num==0) return(num)
num=”"+Math.abs(num)
var newnum=”"
while (num!=0)
{
newnum=hexnum.charAt(num%newcarry)+newnum
num=Math.floor(num/newcarry)
}
if (neg)
newnum=”-”+newnum
return(newnum)
}
//表达式解析
function parse(string)
{
if (string.match(/^(.*\d[\+\-\*\/\%\^\&\|x\<])?([+-]?[0-9a-f\.]+)([\+\-\*\/\%\^\&\|x\<])([+-]?[0-9a-f\.]+)$/))
return(RegExp.$1+cypher(RegExp.$2,RegExp.$3,RegExp.$4))
else
return(string)
}
//数学运算和位运算
function cypher(left,join,right)
{
left=todec(left,carry)
right=todec(right,carry)
if (join==”+”)
return(decto(parseFloat(left)+parseFloat(right),carry))
if (join==”-”)
return(decto(left-right,carry))
if (join==”*”)
return(decto(left*right,carry))
if (join==”/” && right!=0)
return(decto(left/right,carry))
if (join==”%”)
return(decto(left%right,carry))
if (join==”&”)
return(decto(left&right,carry))
if (join==”|”)
return(decto(left|right,carry))
if (join==”^”)
return(decto(Math.pow(left,right),carry))
if (join==”x”)
return(decto(left^right,carry))
if (join==”<”)
return(decto(left<<right,carry))
alert(“除数不能为零”)
return(left)
}
//函数计算
function funcalc(fun,num)
{
with(Math)
{
if (fun==”pi”)
return(PI)
if (fun==”e”)
return(E)
if (fun==”abs”)
return(abs(num))
if (fun==”ceil”)
return(ceil(num))
if (fun==”round”)
return(round(num))
if (fun==”floor”)
return(floor(num))
if (fun==”deci”)
return(num-floor(num))
if (fun==”ln” && num>0)
return(log(num))
if (fun==”exp”)
return(exp(num))
if (fun==”log” && num>0)
return(log(num)*LOG10E)
if (fun==”expdec”)
return(pow(10,num))
if (fun==”cube”)
return(num*num*num)
if (fun==”cubt”)
return(pow(num,1/3))
if (fun==”sqr”)
return(num*num)
if (fun==”sqrt” && num>=0)
return(sqrt(num))
if (fun==”!”)
return(factorial(num))
if (fun==”recip” && num!=0)
return(1/num)
if (fun==”dms”)
return(dms(num))
if (fun==”deg”)
return(deg(num))
if (fun==”~”)
return(~num)
if (angle==”d”)
{
if (fun==”sin”)
return(sin(degressToRadians(num)))
if (fun==”cos”)
return(cos(degressToRadians(num)))
if (fun==”tan”)
return(tan(degressToRadians(num)))
if (fun==”arcsin” && abs(num)<=1)
return(radiansToDegress(asin(num)))
if (fun==”arccos” && abs(num)<=1)
return(radiansToDegress(acos(num)))
if (fun==”arctan”)
return(radiansToDegress(atan(num)))
}
else
{
if (fun==”sin”)
return(sin(num))
if (fun==”cos”)
return(cos(num))
if (fun==”tan”)
return(tan(num))
if (fun==”arcsin” && abs(num)<=1)
return(asin(num))
if (fun==”arccos” && abs(num)<=1)
return(acos(num))
if (fun==”arctan”)
return(atan(num))
}
if (fun==”hypsin”)
return((exp(num)-exp(0-num))*0.5)
if (fun==”hypcos”)
return((exp(num)+exp(-num))*0.5)
if (fun==”hyptan”)
return((exp(num)-exp(-num))/(exp(num)+exp(-num)))
if (fun==”ahypsin” | fun==”hypcos” | fun==”hyptan”)
{
alert(“对不起,公式还没有查到!”)
return(num)
}
alert(“超出函数定义范围”)
return(num)
}
}
function factorial(n)
{
n=Math.abs(parseInt(n))
var fac=1
for (;n>0;n-=1)
fac*=n
return(fac)
}
function dms(n)
{
var neg=(n<0)
with(Math)
{
n=abs(n)
var d=floor(n)
var m=floor(60*(n-d))
var s=(n-d)*60-m
}
var dms=d+m/100+s*0.006
if (neg)
dms=-dms
return(dms)
}
function deg(n)
{
var neg=(n<0)
with(Math)
{
n=abs(n)
var d=floor(n)
var m=floor((n-d)*100)
var s=(n-d)*100-m
}
var deg=d+m/60+s/36
if (neg)
deg=-deg
return(deg)
}
function degressToRadians(degress)
{
return(degress*Math.PI/180)
}
function radiansToDegress(radians)
{
return(radians*180/Math.PI)
}
//界面
//–>
</SCRIPT>
<body bgcolor=”fcfff7″ leftmargin=”0″ topmargin=”0″ marginwidth=”0″>
<br>
<DIV align=center>
<FORM name=calc>
<TABLE width=650  height=250 bgcolor=”#E6F2E7″ style=”border-width:1px 1px 1px 1px;border-style:solid;border-color:#8AB78A;”>
<TBODY>
<TR>
<TD height=50 bgcolor=”#E6F2E7″>
<TABLE width=100%>
<TBODY>
<TR><TD align=center><FONT color=#205001>计算器 </FONT></TD></TR>
<TR><TD height=”35″ align=center>
<INPUT name=display readOnly size=50 value=0 style=” font-size:18px;”></TD>
</TR></TBODY></TABLE></TD>
</TR>
<TR>
<TD bgcolor=”#E6F2E7″>
<TABLE width=100% style=”border-width:1px 0px 0px 0px;border-style:solid;border-color:#8AB78A;”>
<TBODY>
<TR>
<TD style=”color:#205001;”><INPUT name=carry onclick=inputChangCarry(16)
type=radio> 十六进制 <INPUT CHECKED name=carry
onclick=inputChangCarry(10) type=radio> 十进制 <INPUT name=carry
onclick=inputChangCarry(8) type=radio> 八进制 <INPUT name=carry
onclick=inputChangCarry(2) type=radio> 二进制 </TD>
<TD width=”187″ style=”color:#205001;”><INPUT CHECKED name=angle
onclick=”inputChangAngle(‘d’)” type=radio value=d>
角度制
<INPUT
name=angle onclick=”inputChangAngle(‘r’)” type=radio value=r>
弧度制        </TD>
</TR></TBODY></TABLE>
<TABLE width=100%>
<TBODY>
<TR>
<TD width=170 style=”color:#205001;”><INPUT name=shiftf onclick=inputshift()
type=checkbox>上档功能 <INPUT name=hypf onclick=inputshift()
type=checkbox>双曲函数 </TD>
<TD width=”154″ align=”center”><INPUT name=bracket readOnly size=3
style=”BACKGROUND-COLOR: lightgrey; line-height:24px;”> <INPUT name=memory readOnly
size=3 style=”BACKGROUND-COLOR: lightgrey; line-height:24px;”> <INPUT name=operator
readOnly size=3 style=”BACKGROUND-COLOR: lightgrey; “> </TD>
<TD align=”right”><INPUT onclick=backspace() style=”COLOR: B50506; line-height:24px;” type=button value=” 退格 ”>
<INPUT onclick=”document.calc.display.value = 0 ” style=”COLOR: #B50506; line-height:24px;” type=button value=” 清屏 ”>
<INPUT onclick=clearall() style=”COLOR: #B50506; line-height:24px;” type=button value=” 全清 ”>          </TD>
</TR></TBODY></TABLE>
<TABLE width=100%>
<TBODY>
<TR>
<TD>
<TABLE>
<TBODY>
<TR align=middle>
<TD><INPUT name=pi onclick=”inputfunction(‘pi’,'pi’)” style=”COLOR: #1919CD; line-height:24px;” type=button value=” PI ”>
</TD>
<TD><INPUT name=e onclick=”inputfunction(‘e’,'e’)” style=”COLOR: #1919CD; line-height:24px;” type=button value=” E ”>
</TD>
<TD><INPUT name=bt onclick=”inputfunction(‘dms’,'deg’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=” d.ms “>
</TD></TR>
<TR align=middle>
<TD><INPUT onclick=addbracket() style=”COLOR: #D316D3; line-height:24px;” type=button value=” ( ”>
</TD>
<TD><INPUT onclick=disbracket() style=”COLOR: #D316D3; line-height:24px;” type=button value=” ) ”>
</TD>
<TD><INPUT name=ln onclick=”inputfunction(‘ln’,'exp’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=” ln ”>
</TD></TR>
<TR align=middle>
<TD><INPUT name=sin onclick=”inputtrig(‘sin’,'arcsin’,'hypsin’,'ahypsin’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”sin ”>
</TD>
<TD><INPUT onclick=”operation(‘^’,7)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”x^y ”>
</TD>
<TD><INPUT name=log onclick=”inputfunction(‘log’,'expdec’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=” log ”>
</TD></TR>
<TR align=middle>
<TD><INPUT name=cos onclick=”inputtrig(‘cos’,'arccos’,'hypcos’,'ahypcos’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”cos ”>
</TD>
<TD><INPUT name=cube onclick=”inputfunction(‘cube’,'cubt’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”x^3 ”>
</TD>
<TD><INPUT onclick=”inputfunction(‘!’,'!’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=” n! ”>
</TD></TR>
<TR align=middle>
<TD><INPUT name=tan onclick=”inputtrig(‘tan’,'arctan’,'hyptan’,'ahyptan’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”tan ”>
</TD>
<TD><INPUT name=sqr onclick=”inputfunction(‘sqr’,'sqrt’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”x^2 ”>
</TD>
<TD><INPUT onclick=”inputfunction(‘recip’,'recip’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=” 1/x ”>
</TD></TR></TBODY></TABLE></TD>
<TD width=30></TD>
<TD>
<TABLE>
<TBODY>
<TR>
<TD align=”center”><INPUT onclick=putmemory() style=”COLOR: #B50506; line-height:24px;” type=button value=” 储存 “>                </TD>
</TR>
<TR>
<TD><INPUT onclick=getmemory() style=”COLOR: #B50506; line-height:24px;” type=button value=” 取存 “>
</TD></TR>
<TR>
<TD><INPUT onclick=addmemory() style=”COLOR: #B50506; line-height:24px;” type=button value=” 累存 “>
</TD></TR>
<TR>
<TD><INPUT onclick=multimemory() style=”COLOR: #B50506; line-height:24px;” type=button value=” 积存 “>
</TD></TR>
<TR>
<TD height=33><INPUT onclick=clearmemory() style=”COLOR: #B50506; line-height:24px;” type=button value=” 清存 “>
</TD></TR></TBODY></TABLE></TD>
<TD width=30></TD>
<TD>
<TABLE>
<TBODY>
<TR align=middle>
<TD><INPUT name=k7 onclick=”inputkey(’7′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px; ” type=button value=” 7 ”>
</TD>
<TD><INPUT name=k8 onclick=”inputkey(’8′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 8 ”>
</TD>
<TD><INPUT name=k9 onclick=”inputkey(’9′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 9 ”>
</TD>
<TD><INPUT onclick=”operation(‘/’,6)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” / ”>
</TD>
<TD><INPUT onclick=”operation(‘%’,6)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 取余 “>
</TD>
<TD><INPUT onclick=”operation(‘&amp;’,3)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 与 ”>
</TD></TR>
<TR align=middle>
<TD><INPUT name=k4 onclick=”inputkey(’4′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 4 ”>
</TD>
<TD><INPUT name=k5 onclick=”inputkey(’5′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 5 ”>
</TD>
<TD><INPUT name=k6 onclick=”inputkey(’6′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 6 ”>
</TD>
<TD><INPUT onclick=”operation(‘*’,6)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” * ”>
</TD>
<TD><INPUT name=floor onclick=”inputfunction(‘floor’,'deci’)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 取整 “>
</TD>
<TD><INPUT onclick=”operation(‘|’,1)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 或 ”>
</TD></TR>
<TR align=middle>
<TD><INPUT onclick=”inputkey(’1′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 1 ”>
</TD>
<TD><INPUT name=k2 onclick=”inputkey(’2′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 2 ”></TD>
<TD><INPUT name=k3 onclick=”inputkey(’3′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 3 ”>
</TD>
<TD><INPUT onclick=”operation(‘-’,5)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” - ”>
</TD>
<TD><INPUT onclick=”operation(‘<’,4)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 左移 “>
</TD>
<TD><INPUT onclick=”inputfunction(‘~’,'~’)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 非 ”>
</TD></TR>
<TR align=middle>
<TD><INPUT onclick=”inputkey(’0′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 0 ”>
</TD>
<TD><INPUT onclick=changeSign() style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” +/- “>
</TD>
<TD><INPUT name=kp onclick=”inputkey(‘.’)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” . ”>
</TD>
<TD><INPUT onclick=”operation(‘+’,5)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” + ”>
</TD>
<TD><INPUT onclick=result() style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” = ”>
</TD>
<TD><INPUT onclick=”operation(‘x’,2)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 异或 “>
</TD></TR>
<TR align=middle>
<TD><INPUT disabled name=ka onclick=”inputkey(‘a’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” A  ”>
</TD>
<TD><INPUT disabled name=kb onclick=”inputkey(‘b’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” B  ”>
</TD>
<TD><INPUT disabled name=kc onclick=”inputkey(‘c’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” C  ”>
</TD>
<TD><INPUT disabled name=kd onclick=”inputkey(‘d’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” D ”>
</TD>
<TD align=”center”><INPUT disabled name=ke onclick=”inputkey(‘e’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” E  ”>                </TD>
<TD align=”center”><INPUT disabled name=kf onclick=”inputkey(‘f’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” F  ”>    </TD>
</TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></FORM></DIV>
</body>
</html>

<html><head><meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″><style type=text/css> td,body {  font-size: 13px;}body{ margin-top:0px; margin-left:0px; margin-right:0px; background-color: #fcfff7;} </style><title>计算器</title><SCRIPT language=javascript><!–var endNumber=truevar mem=0var carry=10var hexnum=”0123456789abcdef”var angle=”d”var stack=”"var level=”0″var layer=0//数字键function inputkey(key){ var index=key.charCodeAt(0); if ((carry==2 && (index==48 || index==49)) || (carry==8 && index>=48 && index<=55) || (carry==10 && (index>=48 && index<=57 || index==46)) || (carry==16 && ((index>=48 && index<=57) || (index>=97 && index<=102)))) if(endNumber) { endNumber=false document.calc.display.value = key } else if(document.calc.display.value == null || document.calc.display.value == “0″) document.calc.display.value = key else document.calc.display.value += key}function changeSign(){    if (document.calc.display.value!=”0″)    if(document.calc.display.value.substr(0,1) == “-”)        document.calc.display.value = document.calc.display.value.substr(1)    else        document.calc.display.value = “-” + document.calc.display.value}//函数键function inputfunction(fun,shiftfun){ endNumber=true if (document.calc.shiftf.checked) document.calc.display.value=decto(funcalc(shiftfun,(todec(document.calc.display.value,carry))),carry) else document.calc.display.value=decto(funcalc(fun,(todec(document.calc.display.value,carry))),carry) document.calc.shiftf.checked=false document.calc.hypf.checked=false inputshift()}function inputtrig(trig,arctrig,hyp,archyp){ if (document.calc.hypf.checked) inputfunction(hyp,archyp) else inputfunction(trig,arctrig)}//运算符function operation(join,newlevel){ endNumber=true var temp=stack.substr(stack.lastIndexOf(“(“)+1)+document.calc.display.value while (newlevel!=0 && (newlevel<=(level.charAt(level.length-1)))) { temp=parse(temp) level=level.slice(0,-1) } if (temp.match(/^(.*\d[\+\-\*\/\%\^\&\|x])?([+-]?[0-9a-f\.]+)$/)) document.calc.display.value=RegExp.$2 stack=stack.substr(0,stack.lastIndexOf(“(“)+1)+temp+join document.calc.operator.value=” “+join+” ” level=level+newlevel }//括号function addbracket(){ endNumber=true document.calc.display.value=0 stack=stack+”(” document.calc.operator.value=”   ” level=level+0 layer+=1 document.calc.bracket.value=”(=”+layer}function disbracket(){ endNumber=true var temp=stack.substr(stack.lastIndexOf(“(“)+1)+document.calc.display.value while ((level.charAt(level.length-1))>0) { temp=parse(temp) level=level.slice(0,-1) } document.calc.display.value=temp stack=stack.substr(0,stack.lastIndexOf(“(“)) document.calc.operator.value=”   ” level=level.slice(0,-1)
layer-=1 if (layer>0) document.calc.bracket.value=”(=”+layer else document.calc.bracket.value=”"}//等号function result(){ endNumber=true while (layer>0) disbracket() var temp=stack+document.calc.display.value while ((level.charAt(level.length-1))>0) { temp=parse(temp) level=level.slice(0,-1) }
document.calc.display.value=temp document.calc.bracket.value=”" document.calc.operator.value=”" stack=”" level=”0″}//修改键function backspace(){ if (!endNumber) { if(document.calc.display.value.length>1) document.calc.display.value=document.calc.display.value.substring(0,document.calc.display.value.length – 1) else document.calc.display.value=0 }}function clearall(){ document.calc.display.value=0 endNumber=true stack=”" level=”0″ layer=”" document.calc.operator.value=”" document.calc.bracket.value=”"}//转换键function inputChangCarry(newcarry){ endNumber=true document.calc.display.value=(decto(todec(document.calc.display.value,carry),newcarry)) carry=newcarry
document.calc.sin.disabled=(carry!=10) document.calc.cos.disabled=(carry!=10) document.calc.tan.disabled=(carry!=10) document.calc.bt.disabled=(carry!=10) document.calc.pi.disabled=(carry!=10) document.calc.e.disabled=(carry!=10) document.calc.kp.disabled=(carry!=10) document.calc.k2.disabled=(carry<=2) document.calc.k3.disabled=(carry<=2) document.calc.k4.disabled=(carry<=2) document.calc.k5.disabled=(carry<=2) document.calc.k6.disabled=(carry<=2) document.calc.k7.disabled=(carry<=2) document.calc.k8.disabled=(carry<=8) document.calc.k9.disabled=(carry<=8) document.calc.ka.disabled=(carry<=10) document.calc.kb.disabled=(carry<=10) document.calc.kc.disabled=(carry<=10) document.calc.kd.disabled=(carry<=10) document.calc.ke.disabled=(carry<=10) document.calc.kf.disabled=(carry<=10) }function inputChangAngle(angletype){ endNumber=true angle=angletype if (angle==”d”) document.calc.display.value=radiansToDegress(document.calc.display.value) else document.calc.display.value=degressToRadians(document.calc.display.value) endNumber=true}
function inputshift(){ if (document.calc.shiftf.checked) { document.calc.bt.value=”deg ” document.calc.ln.value=”exp ” document.calc.log.value=”expd ” if (document.calc.hypf.checked) { document.calc.sin.value=”ahs ” document.calc.cos.value=”ahc ” document.calc.tan.value=”aht ” } else { document.calc.sin.value=”asin ” document.calc.cos.value=”acos ” document.calc.tan.value=”atan ” } document.calc.sqr.value=”x^.5 ” document.calc.cube.value=”x^.3 ” document.calc.floor.value=” 小数 ” } else { document.calc.bt.value=”d.ms ” document.calc.ln.value=” ln ” document.calc.log.value=” log “
if (document.calc.hypf.checked) { document.calc.sin.value=”hsin ” document.calc.cos.value=”hcos ” document.calc.tan.value=”htan ” } else { document.calc.sin.value=”sin ” document.calc.cos.value=”cos ” document.calc.tan.value=”tan ” } document.calc.sqr.value=”x^2 ” document.calc.cube.value=”x^3 ” document.calc.floor.value=” 取整 ” }
}//存储器部分
function clearmemory(){ mem=0 document.calc.memory.value=”   “}
function getmemory(){ endNumber=true document.calc.display.value=decto(mem,carry)}
function putmemory(){ endNumber=true if (document.calc.display.value!=0) { mem=todec(document.calc.display.value,carry) document.calc.memory.value=” M ” } else document.calc.memory.value=”   “}
function addmemory(){ endNumber=true mem=parseFloat(mem)+parseFloat(todec(document.calc.display.value,carry)) if (mem==0) document.calc.memory.value=”   ” else document.calc.memory.value=” M “}
function multimemory(){ endNumber=true mem=parseFloat(mem)*parseFloat(todec(document.calc.display.value,carry)) if (mem==0) document.calc.memory.value=”   ” else document.calc.memory.value=” M “}
//十进制转换
function todec(num,oldcarry){ if (oldcarry==10 || num==0) return(num) var neg=(num.charAt(0)==”-”) if (neg) num=num.substr(1) var newnum=0 for (var index=1;index<=num.length;index++) newnum=newnum*oldcarry+hexnum.indexOf(num.charAt(index-1)) if (neg) newnum=-newnum return(newnum)}
function decto(num,newcarry){ var neg=(num<0) if (newcarry==10 || num==0) return(num) num=”"+Math.abs(num) var newnum=”" while (num!=0) { newnum=hexnum.charAt(num%newcarry)+newnum num=Math.floor(num/newcarry) } if (neg) newnum=”-”+newnum return(newnum)}
//表达式解析
function parse(string){ if (string.match(/^(.*\d[\+\-\*\/\%\^\&\|x\<])?([+-]?[0-9a-f\.]+)([\+\-\*\/\%\^\&\|x\<])([+-]?[0-9a-f\.]+)$/)) return(RegExp.$1+cypher(RegExp.$2,RegExp.$3,RegExp.$4)) else return(string)}
//数学运算和位运算
function cypher(left,join,right){ left=todec(left,carry) right=todec(right,carry) if (join==”+”) return(decto(parseFloat(left)+parseFloat(right),carry)) if (join==”-”) return(decto(left-right,carry)) if (join==”*”) return(decto(left*right,carry)) if (join==”/” && right!=0) return(decto(left/right,carry)) if (join==”%”) return(decto(left%right,carry)) if (join==”&”) return(decto(left&right,carry)) if (join==”|”) return(decto(left|right,carry)) if (join==”^”) return(decto(Math.pow(left,right),carry))
if (join==”x”) return(decto(left^right,carry)) if (join==”<”) return(decto(left<<right,carry)) alert(“除数不能为零”) return(left)}
//函数计算
function funcalc(fun,num){ with(Math) { if (fun==”pi”) return(PI) if (fun==”e”) return(E)
if (fun==”abs”) return(abs(num)) if (fun==”ceil”) return(ceil(num)) if (fun==”round”) return(round(num))
if (fun==”floor”) return(floor(num)) if (fun==”deci”) return(num-floor(num))

if (fun==”ln” && num>0) return(log(num)) if (fun==”exp”) return(exp(num)) if (fun==”log” && num>0) return(log(num)*LOG10E) if (fun==”expdec”) return(pow(10,num))
if (fun==”cube”) return(num*num*num) if (fun==”cubt”) return(pow(num,1/3)) if (fun==”sqr”) return(num*num) if (fun==”sqrt” && num>=0) return(sqrt(num))
if (fun==”!”) return(factorial(num))
if (fun==”recip” && num!=0) return(1/num) if (fun==”dms”) return(dms(num)) if (fun==”deg”) return(deg(num))
if (fun==”~”) return(~num) if (angle==”d”) { if (fun==”sin”) return(sin(degressToRadians(num))) if (fun==”cos”) return(cos(degressToRadians(num))) if (fun==”tan”) return(tan(degressToRadians(num)))
if (fun==”arcsin” && abs(num)<=1) return(radiansToDegress(asin(num))) if (fun==”arccos” && abs(num)<=1) return(radiansToDegress(acos(num))) if (fun==”arctan”) return(radiansToDegress(atan(num))) } else { if (fun==”sin”) return(sin(num)) if (fun==”cos”) return(cos(num)) if (fun==”tan”) return(tan(num))
if (fun==”arcsin” && abs(num)<=1) return(asin(num)) if (fun==”arccos” && abs(num)<=1) return(acos(num)) if (fun==”arctan”) return(atan(num)) } if (fun==”hypsin”) return((exp(num)-exp(0-num))*0.5) if (fun==”hypcos”) return((exp(num)+exp(-num))*0.5) if (fun==”hyptan”) return((exp(num)-exp(-num))/(exp(num)+exp(-num)))
if (fun==”ahypsin” | fun==”hypcos” | fun==”hyptan”) { alert(“对不起,公式还没有查到!”) return(num) } alert(“超出函数定义范围”) return(num) }}
function factorial(n){ n=Math.abs(parseInt(n)) var fac=1 for (;n>0;n-=1) fac*=n return(fac)}
function dms(n){ var neg=(n<0) with(Math) { n=abs(n) var d=floor(n) var m=floor(60*(n-d)) var s=(n-d)*60-m } var dms=d+m/100+s*0.006 if (neg)  dms=-dms return(dms)}
function deg(n){ var neg=(n<0) with(Math) { n=abs(n) var d=floor(n) var m=floor((n-d)*100) var s=(n-d)*100-m } var deg=d+m/60+s/36 if (neg)  deg=-deg return(deg)}
function degressToRadians(degress){ return(degress*Math.PI/180)}
function radiansToDegress(radians){ return(radians*180/Math.PI)}
//界面//–></SCRIPT><body bgcolor=”fcfff7″ leftmargin=”0″ topmargin=”0″ marginwidth=”0″><br><DIV align=center><FORM name=calc><TABLE width=650  height=250 bgcolor=”#E6F2E7″ style=”border-width:1px 1px 1px 1px;border-style:solid;border-color:#8AB78A;”>  <TBODY>  <TR>    <TD height=50 bgcolor=”#E6F2E7″>      <TABLE width=100%>        <TBODY>       <TR><TD align=center><FONT color=#205001>计算器 </FONT></TD></TR> <TR><TD height=”35″ align=center>           <INPUT name=display readOnly size=50 value=0 style=” font-size:18px;”></TD> </TR></TBODY></TABLE></TD>  </TR>  <TR>    <TD bgcolor=”#E6F2E7″>      <TABLE width=100% style=”border-width:1px 0px 0px 0px;border-style:solid;border-color:#8AB78A;”>        <TBODY>        <TR>          <TD style=”color:#205001;”><INPUT name=carry onclick=inputChangCarry(16)             type=radio> 十六进制 <INPUT CHECKED name=carry             onclick=inputChangCarry(10) type=radio> 十进制 <INPUT name=carry             onclick=inputChangCarry(8) type=radio> 八进制 <INPUT name=carry             onclick=inputChangCarry(2) type=radio> 二进制 </TD>          <TD width=”187″ style=”color:#205001;”><INPUT CHECKED name=angle             onclick=”inputChangAngle(‘d’)” type=radio value=d>             角度制               <INPUT             name=angle onclick=”inputChangAngle(‘r’)” type=radio value=r>               弧度制        </TD>          </TR></TBODY></TABLE>      <TABLE width=100%>        <TBODY>        <TR>          <TD width=170 style=”color:#205001;”><INPUT name=shiftf onclick=inputshift()             type=checkbox>上档功能 <INPUT name=hypf onclick=inputshift()             type=checkbox>双曲函数 </TD>          <TD width=”154″ align=”center”><INPUT name=bracket readOnly size=3             style=”BACKGROUND-COLOR: lightgrey; line-height:24px;”> <INPUT name=memory readOnly             size=3 style=”BACKGROUND-COLOR: lightgrey; line-height:24px;”> <INPUT name=operator             readOnly size=3 style=”BACKGROUND-COLOR: lightgrey; “> </TD>          <TD align=”right”><INPUT onclick=backspace() style=”COLOR: B50506; line-height:24px;” type=button value=” 退格 ”> <INPUT onclick=”document.calc.display.value = 0 ” style=”COLOR: #B50506; line-height:24px;” type=button value=” 清屏 ”> <INPUT onclick=clearall() style=”COLOR: #B50506; line-height:24px;” type=button value=” 全清 ”>          </TD>        </TR></TBODY></TABLE>      <TABLE width=100%>        <TBODY>        <TR>          <TD>            <TABLE>              <TBODY>              <TR align=middle>                <TD><INPUT name=pi onclick=”inputfunction(‘pi’,'pi’)” style=”COLOR: #1919CD; line-height:24px;” type=button value=” PI ”>                 </TD>                <TD><INPUT name=e onclick=”inputfunction(‘e’,'e’)” style=”COLOR: #1919CD; line-height:24px;” type=button value=” E ”>                 </TD>                <TD><INPUT name=bt onclick=”inputfunction(‘dms’,'deg’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=” d.ms “>                 </TD></TR>              <TR align=middle>                <TD><INPUT onclick=addbracket() style=”COLOR: #D316D3; line-height:24px;” type=button value=” ( ”>                 </TD>                <TD><INPUT onclick=disbracket() style=”COLOR: #D316D3; line-height:24px;” type=button value=” ) ”>                 </TD>                <TD><INPUT name=ln onclick=”inputfunction(‘ln’,'exp’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=” ln ”>                 </TD></TR>              <TR align=middle>                <TD><INPUT name=sin onclick=”inputtrig(‘sin’,'arcsin’,'hypsin’,'ahypsin’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”sin ”>                 </TD>                <TD><INPUT onclick=”operation(‘^’,7)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”x^y ”>                 </TD>                <TD><INPUT name=log onclick=”inputfunction(‘log’,'expdec’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=” log ”>                 </TD></TR>              <TR align=middle>                <TD><INPUT name=cos onclick=”inputtrig(‘cos’,'arccos’,'hypcos’,'ahypcos’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”cos ”>                 </TD>                <TD><INPUT name=cube onclick=”inputfunction(‘cube’,'cubt’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”x^3 ”>                 </TD>                <TD><INPUT onclick=”inputfunction(‘!’,'!’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=” n! ”>                 </TD></TR>              <TR align=middle>                <TD><INPUT name=tan onclick=”inputtrig(‘tan’,'arctan’,'hyptan’,'ahyptan’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”tan ”>                 </TD>                <TD><INPUT name=sqr onclick=”inputfunction(‘sqr’,'sqrt’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=”x^2 ”>                 </TD>                <TD><INPUT onclick=”inputfunction(‘recip’,'recip’)” style=”COLOR: #D316D3; line-height:24px;” type=button value=” 1/x ”>                 </TD></TR></TBODY></TABLE></TD>          <TD width=30></TD>          <TD>            <TABLE>              <TBODY>              <TR>                <TD align=”center”><INPUT onclick=putmemory() style=”COLOR: #B50506; line-height:24px;” type=button value=” 储存 “>                </TD>              </TR>              <TR>                <TD><INPUT onclick=getmemory() style=”COLOR: #B50506; line-height:24px;” type=button value=” 取存 “>                 </TD></TR>              <TR>                <TD><INPUT onclick=addmemory() style=”COLOR: #B50506; line-height:24px;” type=button value=” 累存 “>                 </TD></TR>              <TR>                <TD><INPUT onclick=multimemory() style=”COLOR: #B50506; line-height:24px;” type=button value=” 积存 “>                 </TD></TR>              <TR>                <TD height=33><INPUT onclick=clearmemory() style=”COLOR: #B50506; line-height:24px;” type=button value=” 清存 “>                 </TD></TR></TBODY></TABLE></TD>          <TD width=30></TD>          <TD>            <TABLE>              <TBODY>              <TR align=middle>                <TD><INPUT name=k7 onclick=”inputkey(’7′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px; ” type=button value=” 7 ”>                 </TD>                <TD><INPUT name=k8 onclick=”inputkey(’8′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 8 ”>                 </TD>                <TD><INPUT name=k9 onclick=”inputkey(’9′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 9 ”>                 </TD>                <TD><INPUT onclick=”operation(‘/’,6)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” / ”>                 </TD>                <TD><INPUT onclick=”operation(‘%’,6)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 取余 “>                 </TD>                <TD><INPUT onclick=”operation(‘&amp;’,3)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 与 ”>                 </TD></TR>              <TR align=middle>                <TD><INPUT name=k4 onclick=”inputkey(’4′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 4 ”>                 </TD>                <TD><INPUT name=k5 onclick=”inputkey(’5′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 5 ”>                 </TD>                <TD><INPUT name=k6 onclick=”inputkey(’6′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 6 ”>                 </TD>                <TD><INPUT onclick=”operation(‘*’,6)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” * ”>                 </TD>                <TD><INPUT name=floor onclick=”inputfunction(‘floor’,'deci’)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 取整 “>                 </TD>                <TD><INPUT onclick=”operation(‘|’,1)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 或 ”>                 </TD></TR>              <TR align=middle>                <TD><INPUT onclick=”inputkey(’1′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 1 ”>                 </TD>                <TD><INPUT name=k2 onclick=”inputkey(’2′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 2 ”></TD>                <TD><INPUT name=k3 onclick=”inputkey(’3′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 3 ”>                 </TD>                <TD><INPUT onclick=”operation(‘-’,5)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” - ”>                 </TD>                <TD><INPUT onclick=”operation(‘<’,4)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 左移 “>                 </TD>                <TD><INPUT onclick=”inputfunction(‘~’,'~’)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 非 ”>                 </TD></TR>              <TR align=middle>                <TD><INPUT onclick=”inputkey(’0′)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” 0 ”>                 </TD>                <TD><INPUT onclick=changeSign() style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” +/- “>                 </TD>                <TD><INPUT name=kp onclick=”inputkey(‘.’)” style=”COLOR: #1919CD; font-size:16px; line-height:24px;” type=button value=” . ”>                 </TD>                <TD><INPUT onclick=”operation(‘+’,5)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” + ”>                 </TD>                <TD><INPUT onclick=result() style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” = ”>                 </TD>                <TD><INPUT onclick=”operation(‘x’,2)” style=”COLOR: #B50506; font-size:14px; line-height:24px;” type=button value=” 异或 “>                 </TD></TR>              <TR align=middle>                <TD><INPUT disabled name=ka onclick=”inputkey(‘a’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” A  ”>                 </TD>                <TD><INPUT disabled name=kb onclick=”inputkey(‘b’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” B  ”>                 </TD>                <TD><INPUT disabled name=kc onclick=”inputkey(‘c’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” C  ”>                 </TD>                <TD><INPUT disabled name=kd onclick=”inputkey(‘d’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” D ”>                 </TD>                <TD align=”center”><INPUT disabled name=ke onclick=”inputkey(‘e’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” E  ”>                </TD>                <TD align=”center”><INPUT disabled name=kf onclick=”inputkey(‘f’)” style=”COLOR: #1919CD; font-size:14px; line-height:24px;” type=button value=” F  ”>    </TD>    </TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></FORM></DIV></body></html>