摘要: 推荐一些团队和个人博客地址,有技术相关的的也有分享发现的。博客地址持续在 博客书签收藏夹 | 签叶 http://kleaves.xyz/c/751201 更新 阅读全文
posted @ 2019-08-15 17:28 LaudOak 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 3 using namespace std; 4 5 int main() 6 { 7 int cnt =1; 8 int n; 9 cin>>n;10 while(n--)11 {12 string str1,... 阅读全文
posted @ 2015-04-04 19:49 LaudOak 阅读(143) 评论(0) 推荐(0) 编辑
摘要: CODES SEGMENT ASSUME CS:CODESSTART: MOV DS,AX MOV AH,00H MOV AL,13H INT 10H MOV DX,40AGAIN: MOV CX,0AGAIN_X: PUSH CX ... 阅读全文
posted @ 2015-04-04 11:26 LaudOak 阅读(1301) 评论(0) 推荐(0) 编辑
摘要: 1 class FileUtils 2 { 3 //文件目录下文件总数目 4 public static int fileNumber(File dir) 5 { 6 int filenumber = 0; 7 if(dir.e... 阅读全文
posted @ 2015-02-06 12:12 LaudOak 阅读(557) 评论(0) 推荐(0) 编辑