Til the Cows Come Home
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 29539
Accepted: 9927
Description
Bessie is out in the field and wants to get back to...
分类:
其他好文 时间:
2014-08-04 21:37:48
阅读次数:
361
生成10个不小于100000的6位数public static void main(String[] args) { Random random = new Random(); for (int i=0;i<10;i++) { System.out.println("第=="+...
分类:
编程语言 时间:
2014-08-04 20:43:17
阅读次数:
231
每分钟 采集一次linux信息,采集到的数据暂存到本地sqlite 10分钟通过http上报一次 sqlite库中保存7天的过期数据 monitor4a.out是所有输出,monitor4a.log是INFO级别以上的日志(100MB的5个日志文件循环) python...
分类:
编程语言 时间:
2014-08-04 18:29:57
阅读次数:
407
在eclipse中编写如下的代码,eclipse会给出黄色告警:finally block does not complete normally。
public class Test
{
public static void main(String[] args)
{
System.out.println(m1(null));
}
public ...
分类:
系统相关 时间:
2014-08-04 18:02:37
阅读次数:
200
??
CPU:是有运算器,控制器,存储器组成;CPU中的值得是寄存器而不是主板上的内存
计算计的存储器是内存,CPU的存储器是寄存器RAM
冯诺依曼结构与哈佛结构的区别:哈弗结构在内存中增加了逻辑分段
CS(IP):代码段
DS(bx):数据段
SS(sp):栈段
bss:未初始化的数据段
readelf -a a.out :查看链接生成的.out文件
...
分类:
其他好文 时间:
2014-08-04 17:38:58
阅读次数:
256
1 new? String()与直接赋值的区别? ? String? s1=new String("abc"); ? String? s2="abc"; ?System.out.println(s1==s2);????? //false 详解: 上面两行代码分别会存在内存中三块存储区中,分别是栈,...
分类:
编程语言 时间:
2014-08-04 14:50:57
阅读次数:
246
/*
ID: lucien23
PROG: subset
LANG: C++
*/
#include
#include
using namespace std;
int main()
{
ifstream infile("subset.in");
ofstream outfile("subset.out");
if(!infile || !outfile)
{
cout << ...
分类:
其他好文 时间:
2014-08-04 14:35:27
阅读次数:
200
/*
ID: lucien23
PROG: runround
LANG: C++
*/
#include
#include
#include
using namespace std;
int main()
{
ifstream infile("runround.in");
ofstream outfile("runround.out");
if(!infile || !outfil...
分类:
其他好文 时间:
2014-08-04 14:22:27
阅读次数:
173