摘要: #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 喵小喵~ 阅读(207) 评论(0) 推荐(0) 编辑
摘要: #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 喵小喵~ 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 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 喵小喵~ 阅读(144) 评论(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 喵小喵~ 阅读(285) 评论(0) 推荐(0) 编辑
摘要: #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 喵小喵~ 阅读(210) 评论(0) 推荐(0) 编辑
摘要: sid为所创建数据库的名字 阅读全文
posted @ 2015-12-06 10:59 喵小喵~ 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 登录PL/SQL Developer这里省略Oracle数据库和PL/SQL Developer的安装步骤,注意在安装PL/SQL Developer软件时,不要安装在Program Files (x86)目录下,不然无法启动PL/SQL Developer。奇怪这里为什么选择不到数据库的TNS呢?... 阅读全文
posted @ 2015-12-05 20:43 喵小喵~ 阅读(1854) 评论(0) 推荐(1) 编辑
摘要: public的类、类属变量及方法,包内及包外的任何类均可以访问;protected的类、类属变量及方法,包内的任何类,及包外的那些继承了此类的子类才能访问;private的类、类属变量及方法,包内包外的任何类均不能访问;如果一个类、类属变量及方法不以这三种修饰符来修饰,那么包内的任何类都可以访问它,... 阅读全文
posted @ 2015-11-29 10:07 喵小喵~ 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 谁调用我谁处理(进行catch) 阅读全文
posted @ 2015-11-28 22:02 喵小喵~ 阅读(121) 评论(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 喵小喵~ 阅读(249) 评论(0) 推荐(0) 编辑