上一页 1 ··· 304 305 306 307 308 309 310 311 312 ··· 320 下一页
摘要: Web Profile Builder for Web Application Projects Files can be downloaded from the Web Profile Builder project page. If you use Web Application Projects, you have probably run into the issue of not b... 阅读全文
posted @ 2008-05-12 13:15 emanlee 阅读(760) 评论(0) 推荐(0) 编辑
摘要: C运算符的优先级与结合 优先级 运算符 含义 参与运算对象的数目 ... 阅读全文
posted @ 2008-05-12 09:08 emanlee 阅读(4686) 评论(0) 推荐(0) 编辑
摘要: 美国标准信息交换标准码 ( American Standard Code for Information Interchange, ASCII ) 在计算机中,所有的数据在存储和运算时都要使用二进制数表示(因为计算机比较傻,只有0和1两位数的二进制比较适合于它使用),同样的,象a、b、c、d 这样的 阅读全文
posted @ 2008-05-12 09:01 emanlee 阅读(2477) 评论(1) 推荐(0) 编辑
摘要: /* 例7.19 输入N个学生学号,姓名,成绩,并按成绩降序排列,并输出 p指向结构体变量s1 , 则 s1.成员名,(*p).成员名,p->成员名 等价。 本题采用自定义函数较为合适 Author: emanlee https://www.cnblogs.com/emanlee/ Date: 20 阅读全文
posted @ 2008-05-12 08:53 emanlee 阅读(2416) 评论(0) 推荐(0) 编辑
摘要: /* 7.16 实现测试字符串长度函数strlen() */ #include "stdio.h" int strlen(char *p); void main() { char s1[20]="s1s2s3s4"; char *p=s1; printf("s1的长度: %d\n",strlen(s1)); printf("s1的长度: %d\n",strlen... 阅读全文
posted @ 2008-05-12 08:27 emanlee 阅读(1450) 评论(0) 推荐(0) 编辑
摘要: jscalendar-1.0中文解决方法 (1)jscalendar-1.0不支持中文 是由于没有设置每周的开始日期 修改方法是在lang目录中的文件calendar-cn_utf8.js(或cn_utf8.js,calendar-zh.js)加上Calendar._FD = 0; 代码片段如下: // short day names Calendar._SDN = new Array ("\u... 阅读全文
posted @ 2008-05-11 08:48 emanlee 阅读(1610) 评论(1) 推荐(0) 编辑
摘要: 当登录SQL Server 2005时可能碰到错误: 'No Process is on the Other End of the Pipe'。解决方法:(1)Open up SQL Server Suraface Area Configuration tool by clicking Start ... 阅读全文
posted @ 2008-05-09 19:20 emanlee 阅读(3037) 评论(0) 推荐(0) 编辑
摘要: 开源项目,工具,软件,技术文章: http://www.codeplex.com/ http://www.codeproject.com/ http://sourceforge.net/ 论坛: ://forums.asp.net/ http://www.yetanotherforum.net/ YAF源码学习群:29692523 开源项目,精彩网站: 博客: 论坛: http://www.op... 阅读全文
posted @ 2008-05-07 21:46 emanlee 阅读(244) 评论(0) 推荐(0) 编辑
摘要: /* 7.13 输入三个整数,从小到大排序, (指针,函数实现交换) */ #include "stdio.h"#include "conio.h"void swap(int *a, int *b, int *c);void main(){ int x, y, z; printf("请输入三个整数,示例 1 2 3\n"); scanf("%d%d%d",&x,&y,&z);... 阅读全文
posted @ 2008-05-07 12:20 emanlee 阅读(2735) 评论(0) 推荐(0) 编辑
摘要: 每套试卷结构如下: 1、填空(10题,2分/题)20分 2、阅读程序写运行结果(7小题,5分/题)35分 3、补充程序题(8空,2分/空,补充函数或主程序1题,4分)20分 4、程序改错题(错误点5个)10分 5、编程题(2小题)15分(5+10) 每套试卷要求覆盖的知识点(三大基本程序结构、函数、数组、指针、文件、结构体) 阅读全文
posted @ 2008-05-05 12:16 emanlee 阅读(800) 评论(0) 推荐(0) 编辑
上一页 1 ··· 304 305 306 307 308 309 310 311 312 ··· 320 下一页