会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
喵小喵~
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
61
62
63
64
65
66
67
68
下一页
2015年12月29日
_itoa进制转换
摘要: #define _CRT_SECURE_NO_WARNINGS#include #include void main(){ int num; scanf("%d", &num); char res[30] = { 0 }; _itoa(num, res, 16); printf("\n%s", re...
阅读全文
posted @ 2015-12-29 22:08 喵小喵~
阅读(229)
评论(0)
推荐(0)
2015年12月18日
KMP字符串查找算法
摘要: #include #include using namespace std;void get_next(char *str,int *num){ int idFront = 0; int len = strlen(str); int amount = 1; int flag ...
阅读全文
posted @ 2015-12-18 00:20 喵小喵~
阅读(312)
评论(0)
推荐(0)
2015年12月10日
八皇后
摘要: 1 #include 2 using namespace std; 3 4 #define N 8 5 6 int a[N][N] = { 0 }; 7 8 bool judge(int a[][N],int b,int c)//b行 c列 9 { 10 11 ...
阅读全文
posted @ 2015-12-10 12:39 喵小喵~
阅读(154)
评论(0)
推荐(0)
骑士周游
摘要: #include #include using namespace std;#define N 6int a[N][N] = { 0 };bool judge(int a[][N], int b, int c, int dir){ if (dir == 0) { if (b...
阅读全文
posted @ 2015-12-10 12:38 喵小喵~
阅读(292)
评论(0)
推荐(0)
2015年12月9日
变量内存原理
摘要: #include #include void main(){ int a; printf("%p", &a); _asm { mov eax, 10 add eax,5 mov a, eax } print...
阅读全文
posted @ 2015-12-09 11:00 喵小喵~
阅读(216)
评论(0)
推荐(0)
2015年12月6日
sqldeveloper
摘要: sid为所创建数据库的名字
阅读全文
posted @ 2015-12-06 10:59 喵小喵~
阅读(129)
评论(0)
推荐(0)
2015年12月5日
sql/plus无法显示数据库问题
摘要: 登录PL/SQL Developer这里省略Oracle数据库和PL/SQL Developer的安装步骤,注意在安装PL/SQL Developer软件时,不要安装在Program Files (x86)目录下,不然无法启动PL/SQL Developer。奇怪这里为什么选择不到数据库的TNS呢?...
阅读全文
posted @ 2015-12-05 20:43 喵小喵~
阅读(1889)
评论(0)
推荐(1)
2015年11月29日
java修饰符
摘要: public的类、类属变量及方法,包内及包外的任何类均可以访问;protected的类、类属变量及方法,包内的任何类,及包外的那些继承了此类的子类才能访问;private的类、类属变量及方法,包内包外的任何类均不能访问;如果一个类、类属变量及方法不以这三种修饰符来修饰,那么包内的任何类都可以访问它,...
阅读全文
posted @ 2015-11-29 10:07 喵小喵~
阅读(139)
评论(0)
推荐(0)
2015年11月28日
throw
摘要: 谁调用我谁处理(进行catch)
阅读全文
posted @ 2015-11-28 22:02 喵小喵~
阅读(127)
评论(0)
推荐(0)
可视化日历程序
摘要: public class VisualCalendar { public static void main(String[] args){ System.out.println("请输入日期(按照格式:2630-3-18)"); Scanner scanner = ...
阅读全文
posted @ 2015-11-28 20:46 喵小喵~
阅读(262)
评论(0)
推荐(0)
上一页
1
···
61
62
63
64
65
66
67
68
下一页
公告