1.oracle安装 参考http://wenku.baidu.com/view/d01ffd43336c1eb91a375d68.html,这里不再赘述 2.命令行sqlplus连接oracle (1)检查监听状态 C:\>lsnrctl status LSNRCTL for 32-bit Windows: Version 9.2.0.1.0 - Production on 28-6月 -2005 11:01:01 Copyright (c) 1991, 2002, Oracle Cor…
http://www.cnblogs.com/wanghao111/archive/2009/09/05/1560822.html 1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 6 /* run this program using the console pauser or add your own getch, system("pause") or input loo…
题目内容: dyt喜欢对lrh说的话说反话,现给出lrh说的k句话,输出dyt所说的反话. 输入格式 第一行是样例个数k(k<10) 接下来k行,每行包含lrh说的一句话(每句话长度不超过50,且每句话由英文字母和空格组成(区分大小写),单词间用一个空格隔开,行末无多余空格). 输出格式 针对每一句话,输出dyt所说的反话,每句话占一行. 输入样例 2 hello world here i come zxxz Tql 输出样例 come i here world hello Tql zxxz…
Function HTMLEncode(Str) If Isnull(Str) Then HTMLEncode = "" Exit Function End If Str = Replace(Str,Chr(0),"", 1, -1, 1) Str = Replace(Str, """", """, 1, -1, 1) Str = Replace(Str,"<",&quo…
1.程序示例 //talkback.c一个能为你提供一些信息的对话框 #include <stdio.h> #include <string.h> //提供strlen函数原型 #define DENSITY 62.4 //人的密度(单位是:英镑/每立方英尺 int main() { float weight,volume; int size,letters; ]; //name是一个有40个字符的数组 printf("Hi!What's your first name?…
#include<iostream> using namespace std; int main() { int r, c; char grid[50][51]; cout << "please input row and column :"<<endl; cin >> r>>c ; for (int i = 0; i < r; i++) cin >> grid[i]; for (int i = 0; i &…