不要让昨天 占据你的今天 夏午晴天

夏午晴天

上一页 1 2 3 4 5 6 7 8 ··· 15 下一页

2017年10月13日

ADB指令

摘要: adb kill-server 杀死adb服务 start-server开启服务 adb install aa.apk 快速安装一个apk adb uninstall + (应用包名) 快速卸载一个应用 adb shell 进入手机终端 获得设备名: adb devices 进入shell命令: a 阅读全文

posted @ 2017-10-13 21:39 夏晴天 阅读(192) 评论(0) 推荐(0) 编辑

2017年10月9日

顺序表非递减顺序合并

摘要: 1 #include 2 using namespace std; 3 #define MAXSIZE 100 4 /** 5 * 实验一 (1) 6 * @author Unchangedman 7 */ 8 typedef int ElemType; 9 10 typedef struct 11 { 12 ElemType data... 阅读全文

posted @ 2017-10-09 22:12 夏晴天 阅读(1050) 评论(0) 推荐(0) 编辑

2017年10月8日

双向链表

摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef int ElemType; 4 /** 5 * 双向链表 6 */ 7 typedef struct Node 8 { 9 struct Node *pre; 10 ElemTyp 阅读全文

posted @ 2017-10-08 19:46 夏晴天 阅读(205) 评论(0) 推荐(0) 编辑

2017年9月13日

京东首页

摘要: 随便写的,我并不想做这个,,,,, 都写吐了 阅读全文

posted @ 2017-09-13 15:55 夏晴天 阅读(176) 评论(0) 推荐(1) 编辑

学生信息表

该文被密码保护。 阅读全文

posted @ 2017-09-13 15:51 夏晴天 阅读(14) 评论(0) 推荐(0) 编辑

2017年8月27日

火车进站

摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 const int MAXN = 1000 + 10; 6 7 int n, target[MAXN]; 8 9 int main(){ 10 while(cin >> n){ 11 stack s; 12 in... 阅读全文

posted @ 2017-08-27 11:04 夏晴天 阅读(139) 评论(0) 推荐(0) 编辑

2017年8月25日

成绩系统

该文被密码保护。 阅读全文

posted @ 2017-08-25 21:25 夏晴天 阅读(2) 评论(0) 推荐(0) 编辑

成绩管理系统

该文被密码保护。 阅读全文

posted @ 2017-08-25 21:14 夏晴天 阅读(3) 评论(0) 推荐(0) 编辑

三角形有向面积

摘要: 1 double area2(double x0, double y0, double x1, double y1, double x2, double y2){ 2 return x0*y1 + x2*y0 + x1*y2 - x2*y1 - x0*y2 - x1*y0; 3 } 阅读全文

posted @ 2017-08-25 10:17 夏晴天 阅读(782) 评论(0) 推荐(0) 编辑

2017年8月17日

N! (数组)

摘要: 1 #include 2 using namespace std; 3 const int MAXN = 3000; 4 int f[MAXN]; 5 6 int main(){ 7 int n; 8 cin >> n; 9 f[0] = 1; 10 int i, j; 11 for(i = 2; i = 0; j--){ 20 ... 阅读全文

posted @ 2017-08-17 22:14 夏晴天 阅读(376) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 15 下一页

导航

Live2D