[原]初次运用数据缓存机制
摘要: 今天在书上看了数据缓存,就学着写了一个例子,留作以后参考,同时也欢迎各路高手路过时,教我一些更有难度的,呵呵!
阅读全文
posted @
2008-07-07 11:12 Kenny tian 阅读(1399) |
评论 (16) 编辑
[原]有TreeNode”并不包含“Nodes”的定义困扰的朋友看过来
摘要: System.Web.UI.WebControls.TreeNode”并不包含“Nodes”的定义困扰的朋友看过来
阅读全文
posted @
2008-06-08 16:17 Kenny tian 阅读(287) |
评论 (0) 编辑
[原]比较三个整数大小
摘要: #include "stdio.h"
#include "conio.h"
main()
{
int a,b,c,d;
printf("Please enter 3 integer numbers:"); /*给用户一个提示*/
scanf("%d,%d,%d",&a,&b,&c); /*前面那个/n是把上面那个输入换一行,下面的/n是输出完结果后再一次换行*/
d = max(a,b,c);
printf("\nMax number is:%d\n",d);
getch(); /*显示结果后,让屏幕定在那里不行*/
}
阅读全文
posted @
2007-03-06 21:58 Kenny tian 阅读(77) |
评论 (3) 编辑