摘要: A. Numbers time limit per test 1 second memory limit per test 64 megabytes input standard input output standard output A. Numbers time limit per test 阅读全文
posted @ 2013-08-12 20:34 一杯半盏 阅读(221) 评论(0) 推荐(0) 编辑
摘要: A. Letter time limit per test 1 second memory limit per test 64 megabytes input standard input output standard output A. Letter time limit per test 1 阅读全文
posted @ 2013-08-12 20:31 一杯半盏 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 这次用到的文件打开函数不再是fopen,而是stdio.h中包含的另一个函数freopen FILE * freopen ( const char * filename,const char * mode, FILE * stream ); 【参数说明】 filename: 要打开的文件名 mode 阅读全文
posted @ 2013-08-02 19:40 一杯半盏 阅读(191) 评论(0) 推荐(0) 编辑
摘要: TITLE:c语言中的isalpha,isdigit,islower,isupper等一系列函数 已经全部验证检查,无任何错误 isalnum(测试字符是否为英文或数字) 相关函数 isalpha,isdigit,islower,isupper 表头文件 #include<ctype.h> 定义函数 阅读全文
posted @ 2013-08-01 17:12 一杯半盏 阅读(517) 评论(0) 推荐(0) 编辑
摘要: d,lx,ld,,lu,这几个都是输出32位的hd,hx,hu,这几个都是输出16位数据的,hhd,hhx,hhu,这几个都是输出8位的,lld,ll,llu,llx,这几个都是输出64位的,printf( "%llu ",.....)%llu 是64位无符号%llx才是64位16进制数 Dev-C 阅读全文
posted @ 2013-07-31 19:57 一杯半盏 阅读(530) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #define Max 2000 void multiply(char *a,char *b,char *c) { int i,j,lena,lenb,*s; lena=strlen(a); lenb=strlen(b); s=(int*)malloc(sizeof(int)*(lena+lenb)); ... 阅读全文
posted @ 2013-07-29 20:13 一杯半盏 阅读(154) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h" #include "string.h" /* name:大数加法 author:YouRmyDream */ void sup_addition(char a[],char b[],char c[]) { int c1=strlen(a); int c2=strlen(b); int d,k=0,w=0; int i=c1-1,j=c2-1; whi... 阅读全文
posted @ 2013-07-29 16:57 一杯半盏 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 很多人甚至市面上的一些书籍,都使用了void main( ) ,其实这是错误的。C/C++ 中从来没有定义过void main( ) 。C++ 之父 Bjarne Stroustrup 在他的主页上的 FAQ 中明确地写着 The definition void main( ) { /* ... * 阅读全文
posted @ 2013-07-22 14:20 一杯半盏 阅读(281) 评论(0) 推荐(0) 编辑
摘要: win7重装系统经验总结报告(2013年6月29日凌晨1:45) 步骤: 1。考虑被重做的电脑是否有重要文件在C盘。有则转移到D盘等非系统盘。 2。看该电脑是2GB内存还是4GB以上内存。 3。准备好工具,光盘或者U盘,包括win7系统,2GB内存准备32位系统,4GB内存准备64位系统。 4。重装 阅读全文
posted @ 2013-06-29 10:16 一杯半盏 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 关于ESET占用CPU严重 的解决方案 本文根据原帖有适量删改。 ESET 的杀毒软件历来以占用资源少,CPU消耗少著称,可是很多朋友(特别是中国大陆的朋友)反应ESS & EAV 间歇性占用CPU严重。 其实,关于ESS & EAV 占用CPU严重问题,绝大多数是ekrn.exe进程CPU占用率偏 阅读全文
posted @ 2013-06-22 14:08 一杯半盏 阅读(578) 评论(0) 推荐(0) 编辑