码迷,mamicode.com
首页 >  
搜索关键字:oracle using on    ( 93891个结果
10以内的数字的四则运算
#include <iostream>#include <cstdlib>#include <ctime>using namespace std;int main(){ int num1,num2,op,result1,result2; //num1,num2:操作数;op:运算符;result1, ...
分类:其他好文   时间:2021-04-28 12:11:52    阅读次数:0
winfrom嵌入word
使用微软的DSOFRAMER控件实现方法:先下载DsoFramer_KB311765_x86.exe ,自己百度一下有很多。安装,默认安装目录C:\DsoFramer可以先注册下: 开始菜单 运行 输入 regsvr32.exe C:\DsoFramer\dsoframer.ocx using Sy ...
分类:Windows程序   时间:2021-04-28 11:55:27    阅读次数:0
[ AGC001 F ] Wide Swap
题目 Atcoder 思路 代码 #include <iostream> #include <cstring> #include <algorithm> #include <queue> using namespace std; const int N = 500010, INF = 1e9; in ...
分类:其他好文   时间:2021-04-28 11:51:48    阅读次数:0
4步linux下oracle开机自启动
1、首先数据库要是正常的查看环境变量[root@DBDATA etc]# echo $ORACLE_HOME/u01/app/oracle/product/11.2.0/db2 2、编辑oratab文件下面操作最好都在root用户下操作[root@DBDATA etc]# vi /etc/orata ...
分类:数据库   时间:2021-04-28 11:47:25    阅读次数:0
2021团体程序设计天梯赛 L1-6 吉老师的回归
思路: 水题,略过 Tip: 无 #include <bits/stdc++.h> using namespace std; int main() { int n, t, num = 0; string now; cin >> n >> t; getchar(); for (int i = 1; i ...
分类:其他好文   时间:2021-04-27 15:16:28    阅读次数:0
2021团体程序设计天梯赛 L1-8 乘法口诀数列
思路: 水题,略过 Tip: 无 #include <bits/stdc++.h> using namespace std; const int maxn = 1000 + 5; int ans[maxn]; int main() { int a, b, n; cin >> a >> b >> n; ...
分类:其他好文   时间:2021-04-27 15:09:43    阅读次数:0
2021团体程序设计天梯赛 L2-1 包装机
思路: 水题,略过 Tip: 无 #include <bits/stdc++.h> using namespace std; const int maxn = 1000 + 5; queue<char> que[maxn]; stack<char> s; int main() { int n, m, ...
分类:其他好文   时间:2021-04-27 15:08:37    阅读次数:0
主席树模板
#include <iostream> #include <algorithm> #include <cstdio> using namespace std; const int N = 2e5 * 20; int a[N], b[N], root[N]; struct President_Tree ...
分类:其他好文   时间:2021-04-27 15:01:57    阅读次数:0
hash
#include <bits/stdc++.h> typedef unsigned long long ll; const ll P=1331; using namespace std; ll hash1[1000000],u[1000000]; ll get(int l,int r){ retur ...
分类:其他好文   时间:2021-04-27 15:00:27    阅读次数:0
表达式求值
#include <iostream> #include <stack> #include <cstring> #include <unordered_map> using namespace std; typedef long long ll; stack<int>num; stack<char> ...
分类:其他好文   时间:2021-04-27 14:59:52    阅读次数:0
93891条   上一页 1 ... 29 30 31 32 33 ... 9390 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!