摘要:
#include #include void main(){ FILE *pFile = fopen("a.txt", "w"); char str[] = "你想要输入的字符串 "; fwrite(str,1, sizeof(str)/sizeof(str[0]), pFile); fclose(pFile); system("notepad a.txt");}全盘搜索文件#include#includevoid FindFile(char* ,char* );int count=0;//统计文件数char fn 阅读全文
摘要:
自己的机子是64位的,又装的是64位的系统,刚好python3又提供64位的msi安装包,可安装后一度提示不兼容,搞的我以为win8不能用python3,后来试32的python3又行了,真是一个深刻的教训。还有在idle中不能用极点,真是个麻烦。我的python起步真是多灾多难。 阅读全文
摘要:
‘0’和‘\0'的区别 : 一个ASCⅡ值为48,字符为0;一个ASCⅡ值为0,字符为NUL。#include main(){ char s[5]; s[0] = '0'; s[1] = '\0'; printf("%c\n", s[1]+1); printf("%c\n", s[0]+1); printf("%c", s[2]+1); //字符串数组若没赋值,默认为‘\0'}指针的初使化和赋值#include main(){ int a[] = {10, 20, 30, 40}, *p 阅读全文
摘要:
在网上找了很多AHK版的,至少在win8下不管用。终于发现一个能用的C#,又发现自己的网络是拨号连接,留待以后再研究吧。http://blog.csdn.net/debug__boy/article/details/8432879 阅读全文
摘要:
#include main(){ int c; c = getchar(); while (c != EOF) { putchar(c); c = getchar(); }}描述:让你输入一段字符,回车后打印出来,然后一直这样循环。解析:假设你输入的为单字符1、c被赋值1、判断、打印出1,c又被赋值'\n'、判断、打印出'\n'、提示输入……注意:getchar()返回的字符类型为int;EOF代表end of file,即无字符可读;getchar()会把读取的字符放在缓冲区中,然后逐个读取,读取完后又会提示输入;getchar()的... 阅读全文
摘要:
using System;using System.Text; namespace ConsoleApplication{ class ChineseCode { public static void Main() { //获取GB2312编码页(表) Encoding gb = Encoding.GetEncoding("gb2312"); //调用函数产生4个随机中文汉字编码 object[] bytes = CreateRegionCode(4); ... 阅读全文
摘要:
blank: Blank New Tab Blank New Tab™ 阅读全文
摘要:
下载离线版chrome:登陆support.google.com/chrome,选择”New to Google Chrome?"、"Install Chrome","Alternate (offline) Google Chrome installer (Windows)"不过强烈建议使用在线安装... 阅读全文
摘要:
当安装程序运行到创建磁盘分区界面时→按下“Shift+F10”→启动命令窗口→diskpartList Disk :显示本机的所有磁盘,以便正确操作目标磁盘 Select Disk 1 :选择0号磁盘 Clean :清除0号磁盘上的所有分区 Create Partition Primary Size=512000 :创建主分区,容量为:512000MB Active :激活主分区 Format Quick :快速格式化当前分区 Create Partition Extended :创建扩展分区 Create Partition Logical Size=512000 :创建逻辑分... 阅读全文
摘要:
list := ""random(){global listLoop{random, var, min, maxif var not in %list%{list .=var . "`,"break}}} 阅读全文