2016年11月7日 数组练习

冒泡排序
987654321
比较n-1轮;每轮比较n-1次
var attr=[9,8,7,6,5,4,3,2,1]
var k=0
for (var i=0;i<attr.length-1-i;i++)
{ for(var j=0;j<attr.length-1;j++)
{ if(attr[j]>attr[j+1])

{k=attr[j]
attr[j]=attr[j+1]
attr[j+1]=k
}
}
}alert(attr[])
for循环
四要素:初始值,判断条件,状态改变,循环体

时间: 2024-10-23 08:01:13

2016年11月7日 数组练习的相关文章

2016年11月6日数组

1.while循环(不确定次数,死循环)var a=0while (a>0){ if(a==5) {break; }2. do ...while 循环do{alert ("aa")}while(true)3. 数据存储--数组强类型语言:1.同一种类型的数据存储的集合,在内存中是连续的.2.定义时候需要指定长度. 集合:可以不连续弱类型语言:1.可以存储任意类型数据.2.在内存中不连续. var attr= new Array()造一个空的数组交给变量.数组数据的取值和赋值att

struts2练习时犯的错误(2016年11月4日)

1.Tomcat启动时报错 严重: 文档无效: 找不到语法. at (null:3:8) org.xml.sax.SAXParseException; systemId: file:/F:/Program%20Files%20(x86)/Tomcat%206.0/webapps/struts2_11_4/WEB-INF/classes/struts.xml; lineNumber: 3; columnNumber: 8; 文档无效: 找不到语法. 错误原因:struts.xml中忘记写<!DOC

2016年11月20日 星期日 --出埃及记 Exodus 20:11

For in six days the LORD made the heavens and the earth, the sea, and all that is in them, but he rested on the seventh day. Therefore the LORD blessed the Sabbath day and made it holy. 因为六日之内,耶和华造天,地,海,和其中的万物,第七日便安息,所以耶和华赐福与安息日,定为圣日.

2016年11月19日 星期六 --出埃及记 Exodus 20:10

but the seventh day is a Sabbath to the LORD your God. On it you shall not do any work, neither you, nor your son or daughter, nor your manservant or maidservant, nor your animals, nor the alien within your gates. 但第七日是向耶和华你 神当守的安息日.这一日你和你的儿女,仆婢,牲畜,并

2016年11月27日--面向对象:多态、类库、委托、is和as运算符、泛型集合

1.虚方法 virtual 重写 override 父类中的方法,在子类中并不适用,那么子类需要自主更改继承的方法或者是属性,那父类中加了virtual关键字的方法才可以被子类重写,子类重写父类的方法使用的是override关键字 例: 我们都知道,喜鹊(Magpie).老鹰(Eagle).企鹅(Penguin)都是属于鸟类,我们可以根据这三者的共有特性提取出鸟类(Bird)做为父类,喜鹊喜欢吃虫子,老鹰喜欢吃肉,企鹅喜欢吃鱼. 创建基类Bird如下,添加一个虚方法Eat(): /// <sum

2016年11月20日--存储过程、视图

存储过程: 存储过程(stored procedure)有时也称为sproc.存储过程存储于数据库中而不是在单独的文件中,有输入参数.输出参数以及返回值等. 在数据库中,创建存储过程和创建其他对象的过程一样,除了它使用的AS关键字外. create proc 存储过程名  --创建存储过程   或    alter proc 存储过程名  --  修改存储过程 参数1 参数类型,参数2 参数类型……参数n 参数类型 as begin---  ={ 查.插.删.改 end---  =} 1 --存

2016年11月2日--Window.document对象

一.找到元素: docunment.getElementById("id"):                      根据id找,最多找一个: var a =docunment.getElementById("id");             将找到的元素放在变量中: docunment.getElementsByName("name"):          根据name找,找出来的是数组: docunment.getElementsByT

2016年11月14日--SQL创建数据库、表-查、插、删、改

--创建数据库create database hq20161114go --使用数据库use hq20161114go --创建学生表create table xuesheng(code int,name varchar(10),sex char(10),chengji decimal(18,2)) --添加学生信息insert into xuesheng values(1001,'一','男',11)insert into xuesheng values(1002,'二','男',22)ins

2016年11月15日noip模拟赛

苟.. 1.谜题 1 /* 2 考虑这题,该怎么xjb搞 3 嗯我说出了题解xjb搞.. 4 由题意 易得 N个 二位数字(一位数加个0) 如果是连续的,那么就成立. 5 反过来做. 6 7 方法2:n<4有解,其他无解 8 */ 9 #include <iostream> 10 #include <cmath> 11 #include <stdio.h> 12 #include <string> 13 #include <string.h>