- 浏览: 212328 次
- 性别:
- 来自: 长沙
最新评论
-
liveimain001:
写的挺好的,thx
Tuxedo ubbconfig配置详解 -
liwanfeng:
问题已经解决了正确的参数应该是 -DproxySet=true ...
Eclipse -
liwanfeng:
真不好意思问一下,我的怎么不行啊?
Eclipse -
cuixiping:
不大实用。只要有 dateAdd, dateDiff 差不多就 ...
日期处理通用函数 -
snoopy3384:
谢谢分享!
PL/SQL 基本函数
文章列表
比如:
"AABB" 回文长度为: 4 回文子串为: "AABB"
"12abcba22" 回文长度为: 7 回文子串为: "2abcba2"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char **argv)
{
if (argc != 2) {
printf("usage: ./a.out & ...
- 2008-09-28 10:14
- 浏览 2818
- 评论(0)
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int rand_no_overlap(int start, int end);
int main(int argc, char **argv)
{
rand_no_overlap(1, 10);
exit(EXIT_SUCCESS);
}
int rand_no_overlap(int start, int end)
{
int size = end - start + 1 ...
- 2008-09-26 16:21
- 浏览 938
- 评论(0)
如:数组 int a[9] = {1,2,3,4,5,4,3,2,1}; 打印
*
***
*****
*******
*********
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
static void erect_pillar(int a[], int size);
static int max_elem(int a[], int size);
int main(int argc, char **argv)
...
- 2008-09-26 15:40
- 浏览 978
- 评论(0)