C:\Documents and Settings\Administrator>sqlplus
/nologSQL*Plus: Release 10.2.0.1.0 - Production on 星期一 7月 5 09:50:36
2010Copyright (c) 1982, 2005, Ora...
分类:
数据库 时间:
2014-06-07 05:20:01
阅读次数:
334
【题目】
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 the head of the list.
【题意】
给定一个非负整数,这个表示为一个数字数组。计算这个整数加1后的值。
【思路】
从低位到高位依次相加,注意处理进...
分类:
其他好文 时间:
2014-06-05 01:24:44
阅读次数:
250
第十三章编程练习答案
13.1根据Cd基类,完成派生出一个Classic类,并测试
//13.1根据Cd基类,完成派生出一个Classic类,并测试
#include
#include
using namespace std;
// base class
class Cd
{
char performers[50];
char label[20];
int selections; ...
分类:
编程语言 时间:
2014-06-04 23:45:54
阅读次数:
490
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...
分类:
其他好文 时间:
2014-06-04 19:19:52
阅读次数:
185
Oracle简易界面工具
背景:偶在远程机上干活,需要调用到 Oracle 11g服务器的数据,远程机上已安装Oracle client, 但 sql plus 和 sql developer 及 pl sql developer 都不能用 (DBA折腾几天都没解决)。偶 有服务器的ip, oracle用户名及密码;知道部分表名及字段名。
因时间紧,偶只好自己写一个简易的界面工具来应急...
分类:
数据库 时间:
2014-06-02 23:56:34
阅读次数:
445
最大m子段和问题 Max Sum Plus Plus —— 动态规划...
分类:
其他好文 时间:
2014-06-01 16:18:49
阅读次数:
259
[root@localhost ~]# su - oracle
[oracle@localhost ~]$ sqlplus '/as sysdba'
SQL*Plus: Release 11.2.0.1.0 Production on Tue Apr 22 17:10:52 2014
Copyright (c) 1982, 2009, Oracle. All rights re...
分类:
数据库 时间:
2014-06-01 09:02:31
阅读次数:
802
原文地址:http://www.fengfly.com/plus/view-209437-1.html要用到下面两个类:DeviceAdminReceiver设备管理组件。这个类提供了一个方便解释由系统发出的意图的动作。你的设备管理应用程序必须包含一个DeviceAdminReceiver的子类。本...
分类:
移动开发 时间:
2014-05-26 18:26:32
阅读次数:
289
1、用SYS用户以SYSDBA身份登录SQL
Plus,使用DBA_USERS视图查看用户信息:SELECT USERNAME, ACCOUNT_STATUS, CREATED FROM
DBA_USERS;--用户名,账户状态,创建用户的日期2、创建用户、删除用户CREATE USER IDEN....
分类:
数据库 时间:
2014-05-26 00:56:24
阅读次数:
334
字符串和格式化输入/输出空字符
C的字符串存储时通常以空字符(“\0”)结束。该字符的存在意味着数组的单位数必须至少比要存储的字符数多1。使用字符串 %s告诉printf()要打印一个字符串。
scanf()开始读取输入以后,会在遇到第一个空白字符空格(blank)、制表符(tab)或者换行符...
分类:
其他好文 时间:
2014-05-25 12:18:43
阅读次数:
214