摘要:
联系电话:<input type="text" name="lxdh" id="lxdh" onblur="checkPhone()" style="width:500px;"> <div id="sjh" style="color:red;display:none">手机号有误!</div> 联 阅读全文
摘要:
<select id="jyzmz" name="jyzmz" type="text" > <option name="jyzmz">汉族</option> <option name="jyzmz">回族</option> <option name="jyzmz">藏族</option> <opti 阅读全文
摘要:
//五个不同点 //1.子类只能继承一个抽象类,但可以实现任意多个接口 //2.接口中的方法都是抽象方法,抽象类可以有非抽象方法 //3.抽象类中的成员变量可以是各种类型,接口中的成员变量只能是静态常量 //4.抽象类中可以有静态方法和静态代码块等,接口中不可以 //5.接口没有构造方法,抽象类可以 阅读全文
摘要:
语法: public int length()获取字符串长度。 语法:public char charAt(int index),index---要获取的索引位置 语法: public int indexOf(String str) ,str------要获取的字符串 语法: public int indexOf(String str, int fromlndex) fromlndex... 阅读全文
摘要:
第0层 0 1 2 3 1 2 3 4 2 3 4 5 第1层 1 2 3 4 2 3 4 5 3 4 5 6 阅读全文
摘要:
Arrays.Sort排序结果: 8.09 59.89 67.77 76.67 99.0 489.67 注意:结果只能升序 阅读全文
摘要:
选择排序结果:4 8 59 67 76 99 阅读全文
摘要:
public class Demo { public static void main(String[] args){ int a[] ={63,4,5,32,56,67,78}; for(int i=1;ia[j+1]){//控制排序结果,小于就是降序,大于就是升序 int tmp=a[j]; ... 阅读全文
摘要:
结果:567689 阅读全文
摘要:
# -*- coding: utf-8 -*- ————————————————————————————————————————————————————— # -*- coding: utf-8 -*-"""Spyder Editor This is a temporary script file. 阅读全文