⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 acc_bdsjsq.php

📁 自己实现一个实用的商店应用系统
💻 PHP
📖 第 1 页 / 共 2 页
字号:
<?php
////////////////////////////////////////////////////////
// Author by Shuweich
// Date : 2007.11.13
// 建站支持: http://www.shuweich.net
// 作者: Shuweich
// QQ: 1502384
// ICQ: 190492112
// MSN: shuweich@hotmail.com
// E-mail: root@shuweich.net
// E-mail: shuweich@163.com
////////////////////////////////////////////////////////
// 模块管理 by txdyz
// For 添加会员资料
////////////////////////////////////////////////////////
?>
<html>
<head>
<style   type="text/css">
<!--
td {font-size:   9pt;}
-->
</style>
</head>
<body>
<script language="Javascript">
function doit() {
  form.input.value = eval(form.input.value)
}
function Cos() {
  x = form.input.value
  if (x == '') alert('Error: Input Required');
  else form.input.value = Math.cos(x);
}
function Sin() {
  x = form.input.value
  if (x == '') alert('Error: Input Required');
  else form.input.value = Math.sin(x);
}
function Ln() {
  x = form.input.value
  if (x == '') alert('Error: Input Required');
  else form.input.value = Math.log(x);
}
function Root() {
  x = form.input.value
  if (x == '') alert('Error: Input Required');
  else form.input.value = Math.sqrt(x);
}
function Tan() {
  x = form.input.value
  if (x == '') alert('Error: Input Required');
  else form.input.value = Math.tan(x);
}
function Icos() {
  x = form.input.value
  if (x == '') alert('Error: Input Required');
  else form.input.value = Math.acos(x);
}
function Isin() {
  x = form.input.value
  if (x == '') alert('Error: Input Required');
  else form.input.value = Math.asin(x);
}
function Itan() {
  x = form.input.value
  if (x == '') alert('Error: Input Required');
  else form.input.value = Math.atan(x);
}
function Round() {
  x = form.input.value
  if (x == '') alert('Error: Input Required');
  else form.input.value = Math.round(x);
}
function Ran() {
  x = form.input.value
  form.input.value = Math.random(x);
}
function Neg () {
  x = form.input.value
  if (x == '') alert('Error: Input Required');
  else x = parseFloat(x) * -1;
}
function del() {
  x = form.input.value
  x = (x.substring) - 1
}
//  End -->
</script>

<div align="center">
<form name="form" method="post" action="javascript:doit()">
  <table width="260" border="0" height="260" align="center" bordercolor="#000000" bgcolor="#000000">
    <tr bgcolor="#000000">
      <td colspan="7" height="2">
        <div align="center"><b><font face="Arial, Helvetica, sans-serif" color="#FFFFFF">高级科学计算器</font></b></div>
      </td>
    </tr>
    <tr bgcolor="#000000">
      <td colspan="7" height="2">
        <div align="center">
          <input type="text"   name="input" size="40">
        </div>
      </td>
    </tr>
    <tr bgcolor="#000000">
      <td width="50" height="4">
        <input type="button" name="one"   value="1" onClick="form.input.value += '1'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="4">
        <input type="button" name="two"   value="2" onClick="form.input.value += '2'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="4">
        <input type="button" name="three" value="3" onClick="form.input.value += '3'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="20" height="4"> </td>
      <td width="50" height="4">
        <input type="button" name="clear" value="C" onClick="form.input.value = ''" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #9F0004; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="4">
        <input type="button" name="percent" value=" % " onClick="form.input.value = eval(form.input.value) / 100" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #000000; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="4">
        <input type="button" name="(" value=" ( " onClick="form.input.value += '('" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #000000; HEIGHT: 25 px; WIDTH: 40px">
      </td>
    </tr>
    <tr bgcolor="#000000">
      <td width="50" height="2">
        <input type="button" name="four"  value="4" onClick="form.input.value += '4'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name="five"  value="5" onClick="form.input.value += '5'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name="six"   value="6" onClick="form.input.value += '6'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="20" height="2">  </td>
      <td width="50" height="2">
        <input type="button" name="times" value="  x  " onClick="form.input.value += ' * '" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #000000; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name="div"   value="  /  " onClick="form.input.value += ' / '" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #000000; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name=")" value=" ) " onClick="form.input.value += ')'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #000000; HEIGHT: 25 px; WIDTH: 40px">
      </td>
    </tr>
    <tr bgcolor="#000000">
      <td width="50" height="2">
        <input type="button" name="seven" value="7" onClick="form.input.value += '7'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name="eight" value="8" onClick="form.input.value += '8'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name="nine"  value="9" onClick="form.input.value += '9'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="20" height="2">  </td>
      <td width="50" height="2">
        <input type="button" name="plus"  value="  +  " onClick="form.input.value += ' + '" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #000000; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name="minus" value="  -  " onClick="form.input.value += ' - '" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #000000; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name="round" title="四舍五入" value="Rnd" onClick="Round()" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #000000; HEIGHT: 25 px; WIDTH: 40px">
      </td>
    </tr>
    <tr bgcolor="#000000">
      <td width="50" height="2">
        <input type="button" name="zero"  value="0" onClick="form.input.value += '0'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name="point" value="." onClick="form.input.value += '.'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name="pi" title="园周率" value="PI" onClick="form.input.value += '3.1415926535897932384626433832795'" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #666666; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="20" height="2">  </td>
      <td width="50" height="2">
        <input type="button" name="pi2" value="+/-" onClick="Neg()" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #000000; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name="DoIt"  value=" = " onClick="doit()" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #000000; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50" height="2">
        <input type="button" name="round2" title="随机数" value="Ran#" onClick="Ran()" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #000000; HEIGHT: 25 px; WIDTH: 40px">
      </td>
    </tr>
    <tr bgcolor="#000000">
      <td width="50" height="24"> </td>
      <td width="50" height="24"> </td>
      <td width="50" height="24"> </td>
      <td width="20" height="24"> </td>
      <td width="50" height="24">  </td>
      <td width="50" height="24"> </td>
      <td width="50" height="24"> </td>
    </tr>
    <tr bgcolor="#000000">
      <td width="50">
        <input type="button" name="quad" title="平方数" value="^2" onClick="form.input.value = form.input.value * form.input.value" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #333333; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50">
        <input type="button" name="root" title="二次方根" value="root" onClick="Root()" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #333333; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="50">
        <input type="button" name="ln" value="ln" onClick="Ln()" style="COLOR: #FFFFFF; BACKGROUND-COLOR: #333333; HEIGHT: 25 px; WIDTH: 40px">
      </td>
      <td width="20"> </td>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -