码迷,mamicode.com
首页 >  
搜索关键字:main    ( 65088个结果
java ArrayList嵌套ArrayList
/*** 集合嵌套之ArrayList嵌套ArrayList * 案例: * 我们学科,学科又分为若个班级 * 整个学科一个大集合 * 若干个班级分为每一个小集合 */ public static void main(String[] args) { ArrayList<ArrayList<Pers ...
分类:编程语言   时间:2017-03-07 22:39:18    阅读次数:223
bzoj 3522: [Poi2014]Hotel
呵呵,一开始天真的我以为求个 西格玛 C(??,3)就好了。。 (题解:比枚举2个数的再多一个,,一样搞) ...
分类:其他好文   时间:2017-03-07 22:35:41    阅读次数:195
软件工程——股票利润
#include<iostream>using namespace std; int main(){ int l;//数组长度 cin>>l;//输入数组长度 int *p=new int[l];//定义动态数组 for(int i=0;i<l;i++)//输入数组的元素 cin>>p[i]; in ...
分类:其他好文   时间:2017-03-07 22:35:10    阅读次数:210
java===单类设计模式之饿汉式与懒汉式
package cn.china; public class Single { public static void main(String[]args){ // S singles=S.getInstance(); // S singless=S.getInstance(); // System.... ...
分类:编程语言   时间:2017-03-07 22:34:18    阅读次数:129
java构造器内部多态方法
/** * Created by Administrator on 2017/3/7. *//** * @author zhenghong * @date 2017-03-07-21:21 **/public class TestC { public static void main(String ...
分类:编程语言   时间:2017-03-07 22:26:42    阅读次数:226
PAT1058 A+B in Hogwarts
题目:PAT1058 题解:模拟加法和注意进位就行 代码: ...
分类:其他好文   时间:2017-03-07 20:51:07    阅读次数:156
算法-java代码实现堆排序
堆排序 第7节 堆排序练习题 <!--more--> 对于一个int数组,请编写一个堆排序算法,对数组元素排序。 给定一个int数组A及数组的大小n,请返回排序后的数组。 测试样例: [1,2,3,5,2,3],6 [1,2,2,3,3,5] Java (javac 1.7) 代码自动补全 1 im ...
分类:编程语言   时间:2017-03-07 20:46:20    阅读次数:217
CF782B The Meeting Place Cannot Be Changed
题意: The main road in Bytecity is a straight line from south to north. Conveniently, there are coordinates measured in meters from the southernmost bui ...
分类:其他好文   时间:2017-03-07 20:43:26    阅读次数:189
java system.out.printf()的使用方法
1 package test; 2 3 4 public class Main 5 { 6 public static void main(String[] args) 7 { 8 // 定义一些变量,用来格式化输出。 9 double d = 345.678; 10 Str... ...
分类:编程语言   时间:2017-03-07 19:43:42    阅读次数:211
随机出现300道四则运算数学题
package math; public class math { public static void subject(Object obj) { System.out.println(obj); } public static void main(String[] args) { subject ...
分类:其他好文   时间:2017-03-07 19:43:06    阅读次数:178
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!