`
文章列表
<script type="text/javascript"> function Person(myname,age){ this.nam = myname; this.age = age; this.showInfo = function(){ return ("my name's "+this.nam+",now age " +this.age); } } var person = new Person("shizi",21); document ...
rpm 参数: -ivh:安装显示安装进度--install--verbose--hash -Uvh:升级软件包--Update; -qpl:列出RPM软件包内的文件信息[Query Package list]; -qpi:列出RPM软件包的描述信息[Query Package install package(s)]; -qf:查找指定文件属于哪个 ...
用 setInterval方法可以以指定的间隔实现循环调用函数,直到clearInterval方法取消循环 用clearInterval方法取消循环时,必须将setInterval方法的调用赋值给一个变量,然后clearInterval方法引用该变量。 <script type="text/javascript"> var n = 0; function print(){ document.writeln(n); if(n==1000){ window.clearInterval(s); } n++; ...
http://www.javascriptobfuscator.com/ JavaScript Obfuscator http://javascript-obfuscator.info/
document.getElementsByTagName()方法根据节点返回一个节点列表 <html> <head> <title>getElementByTagName</title> </head> <body> <div id="div1">div1</div> <div id="div1">div2</div> <script type="text/javas ...

水仙花数

    博客分类:
  • java
输出出所有的“水仙花数”,所谓“水仙花数”是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个“水仙花数”,因为153=1的三次方+5的三次方+3的三次方。 怎么样用java 实现 ? public class Num{ public static void main(String[] args){ System.out.println("1000以内的水仙花数:"); int i;//百位上的数 int j;//十位上的数 int k;//个位上的数 int n;//要求的水仙花数 for(n=100; ...
<Table>对象常用特性 名称 类别 描述 caption 属性 <caption/> tBodies 属性   tFoot 属性   tHead 属性   rows 方法 行集合 createTHead 方法 创建<thead/>元素 createTFoot 方法 创建<tfoot/>元素 creat ...
Global site tag (gtag.js) - Google Analytics