首先先连接上
SQL*Plus: Release 12.1.0.2.0 Production on 星期四 2月 12 15:40:422015
Copyright (c) 1982, 2014, Oracle. All rights reserved.
请输入用户名: system
输入口令:
上次成功登录时间: 星期四 2月 12 2015 10:26:40 +08:00
连...
分类:
数据库 时间:
2015-02-12 16:09:48
阅读次数:
244
大概看了300页c++primer ,前三分之二还是比较清楚的掌握了,但是恶心的是剩下的部分看不懂了 而且已经于放假前制定的计划严重脱节了,没办法为了快速或者说清楚的搞明白c++的大概 我打算暂时封印还有400++pages的c++primer,转投谭老爷子的c++程序设计第二版 最后重复一遍吧,如...
分类:
编程语言 时间:
2015-02-12 08:09:26
阅读次数:
151
http://www.journal-of-hepatology.eu/Google+https://plus.google.com/113682524311647196860/posts
分类:
其他好文 时间:
2015-02-09 22:50:41
阅读次数:
128
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2015-02-09 15:25:20
阅读次数:
107
1. cin读取错误时对换行符的处理 1 #include 2 3 using namespace std; 4 5 int main() { 6 double d; 7 char c; 8 cin >> d; 9 if(!cin) {10 co...
分类:
编程语言 时间:
2015-02-08 23:08:14
阅读次数:
182
Problem Description
Now I think you have got an AC in Ignatius.L's "Max Sum" problem. To be a brave ACMer, we always challenge ourselves to more difficult problems. Now you are faced with a more difficult problem.
Given a consecutive number sequence S1, S...
分类:
其他好文 时间:
2015-02-08 09:09:37
阅读次数:
188
原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=2028解题思路:求多个数的最小公倍数,先求第一、二个数的最小公倍数,再与第三个数求它的最小公倍数,重复此过程,第n个数则停止。即可输出结果。 注意两个32位的整数相乘会溢出。。。(不太明白数位溢出现象。。。)#include
using namespace std;
int lowCom(in...
分类:
其他好文 时间:
2015-02-07 16:00:19
阅读次数:
122
MarkDown尝新鲜,着实坑的不轻!!!慎用。
MarkDown尝新鲜,着实坑的不轻!!!...
分类:
其他好文 时间:
2015-02-07 13:14:45
阅读次数:
112
sqlplus / as sysdbaSQL*Plus: Release 11.2.0.1.0 Production on Fri Feb 6 21:05:43 2015Copyright (c) 1982, 2009, Oracle. All rights reserved.Connected t...
分类:
其他好文 时间:
2015-02-06 23:03:50
阅读次数:
261
1. 输入输出流库 iostream = istream+ostream2. 标准输入输出对象: cin >> cout << endl(结束当前行,并将设备关联的缓存区的内容刷到设备中) cerr—告警和错误信息,clog—输出程序的一般信...
分类:
编程语言 时间:
2015-02-06 12:52:56
阅读次数:
144