码迷,mamicode.com
首页 >  
搜索关键字:bre    ( 6194个结果
How To Use DBLink In Oracle Forms 6i
You want to connect multiple databases in oracle forms to perform certain tasks, for example you need to execute ddl or dml statements against databas... ...
分类:数据库   时间:2016-12-25 23:26:00    阅读次数:332
Freebie - Utility Form: Generate Excel Report From SQL Query In Oracle Forms 6i And 11g
Sharing a form to generate Excel file report from SQL query in Oracle Forms. This form can be used in Oracle Forms 6i and 10g / 11g. Below is the scre... ...
分类:数据库   时间:2016-12-25 18:40:14    阅读次数:237
南阳22
1 2 #include 3 #include 4 int main() 5 { 6 int n,m,i,s,r,x; 7 scanf("%d",&n); 8 while(n--) 9 { 10 scanf("%d",&m); 11 s=0; 12 while(m--) 13 {... ...
分类:其他好文   时间:2016-12-25 17:42:08    阅读次数:167
1%一个整数,还是1
#include <stdio.h>int main(){ int i=0; while (++i) { if(i==10) break; if(i%3!=1) continue; printf("%d",i); }} 输出147 ...
分类:其他好文   时间:2016-12-25 11:24:44    阅读次数:182
从一道NOI练习题说递推和递归
一、递推: 所谓递推,简单理解就是推导数列的通项公式。先举一个简单的例子(另一个NOI练习题,但不是这次要解的问题): 这个问题可以用递归来进行解决,但是解题时间1秒明显不够用。怎么办呢,可以考虑找到“规律”,然后推导公式解决问题,开始画图分析: 这是4个台阶时的全部7种走法,记作f(4)=7。现在 ...
分类:其他好文   时间:2016-12-25 01:34:44    阅读次数:1356
Using Single Alert For Messages And Confirmation Messages In Oracle Forms With Set_Alert_Button_Property
Learn how to use single Oracle Form's Alert object for warning/information messages and confirmation messages such as asking for delete confirmation e... ...
分类:数据库   时间:2016-12-25 01:32:14    阅读次数:336
IFROG线上赛做过的题目
#6 1068: 找规律 int main(){ int t,n; cin>>t; while(t--){ cin>>n; if(n%3==0)printf("%d\n",n/3); else printf("%d\n",n); } } 1069 二维树状数组 int bit[1234][12... ...
分类:其他好文   时间:2016-12-24 20:45:44    阅读次数:235
2748: [HAOI2012]音量调节
Description 一个吉他手准备参加一场演出。他不喜欢在演出时始终使用同一个音量,所以他决定每一首歌之前他都要改变一次音量。在演出开始之前,他已经做好了一个列表,里面写着在每首歌开始之前他想要改变的音量是多少。每一次改变音量,他可以选择调高也可以调低。音量用一个整数描述。输入文件中给定整数be ...
分类:其他好文   时间:2016-12-24 20:22:57    阅读次数:194
Python补充06 Python之道
作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明。谢谢! Python有一个彩蛋,用下面语句调出: 该彩蛋的文档记录于PEP 20。 语句执行之后,终端将显示一首"The Zen of Python"的诗,即“Python之道”。这首诗总结 ...
分类:编程语言   时间:2016-12-24 20:20:25    阅读次数:160
Jquery实现两级联动
最后结果如下: 关键代码如下: <select name="customerCondition['credibilityBegin']" id="credibilityBegin" class="ui_select01" style="width:90px" onchange="changeCred ...
分类:Web程序   时间:2016-12-24 19:46:40    阅读次数:236
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!