摘要:
Font Awesome图标库是很多站长都在使用的,使用起来也非常的简单有一些主题的目录啊导航等都没有图标,光秃秃的,我正在使用的大前端也是这样,给导航或分类添加一个图标会让网站页面变得更精致,合理运用图标美化网站可以让网站加分 进入官网:http://www.fontawesome.com.cn/ 阅读全文
摘要:
原理 public class Test { public static void main(String args[]) { int a[]={5,7,4,3,7,4,3,2,7}; int t; for(int i=0;i<a.length-1;i++)//共进行a.length-1趟排序 { 阅读全文
摘要:
代码: public class Test { public static void main(String args[]) { int a[][]={{1,4,6,10},{3,5,8,14},{6,7,9,21}}; int b[][]=new int[4][3]; System.out.pri 阅读全文