Ext.onReady(function () {
var win = new Ext.Window({
title: "个人资料",
width: 500,
height: 320,
plain: true,
la...
Ext.onReady(function () {
var md = new Ext.form.DateField({
name: "testDate",
editable: false, //不允许对日期进行编辑
width: 100,
fo...
分类:
Web程序 时间:
2014-05-22 06:34:55
阅读次数:
257
Interesting Calculator
CSU 过了 TOJ超时了 先记一下
#include
#include
#include
using namespace std;
int a[100];
bool b[100010];
int c[100010];
int d[100010];
int x, y;
int cas = 1;
struct node
{
int x, t,...
分类:
其他好文 时间:
2014-05-22 12:42:02
阅读次数:
249
#include//中缀表达式求值
#include
using namespace std;
int precede(char t1,char t2) //shuru//判断优先级
{
int t=0;
switch(t2)
{
case '+':
case '-':
if(t1=='(...
分类:
其他好文 时间:
2014-05-22 07:48:44
阅读次数:
237
大意:有5种面值的硬币,1、5、10、25、50分。给定找零总额,问有多少种组合方法。
分析:动态规划。int不会溢出。...
分类:
其他好文 时间:
2014-05-22 08:04:13
阅读次数:
239
#include
using namespace std;
int func(int year)//判断闰年的个数
{
int count=0;
for(int i=1990;i
if(year%4==0&&year%100!=0||year%400==0)
count++;
return cou...
分类:
其他好文 时间:
2014-05-22 06:34:15
阅读次数:
252
1).pro文件#-------------------------------------------------
#
# Project created by QtCreator 2014-05-18T12:56:52
#
#-------------------------------------------------
QT += core gui
greaterThan(...
分类:
其他好文 时间:
2014-05-22 09:43:53
阅读次数:
405
#include
//#include
using namespace std;
struct node
{
char word[10];
int num;
};
node obj[100];
void my_word(char input[], char output[])
{
int sum=0,flag=0;...
分类:
其他好文 时间:
2014-05-22 12:41:25
阅读次数:
233
讲解了Java中数组的使用以及和数组相关的操作。...
分类:
编程语言 时间:
2014-05-22 11:05:01
阅读次数:
391
2 下载、安装wxWidgets 这方面的资料从网络可以找到不少。wxWidgets的文档,要涵盖各种操作系统和编译环境,难免让人有点无所适从。这对初学者,是灾难。 以下文字,适合于大部分初学者的工作环境。为能边看边做,请确认:(1)你用的是Windows操作系统(强烈建议初学者进阶后,适时开启Linux下开发的体验);(2)已经安装了Code::Blocks(版本不限,但也别太低了);(3)...
分类:
其他好文 时间:
2014-05-22 06:33:38
阅读次数:
297
zTree实现删除树节点
1、实现源码
zTree实现基本树
<!--
var setting = {
data: {
simpleData: {
enable: true
}
}
};
var zNodes =[
{ id:1, pId:0, name:"湖北省", open:true},...
分类:
其他好文 时间:
2014-05-22 12:40:44
阅读次数:
288
正确代码:#include "stdio.h"
#include "Windows.h"
#include
int wmain(int argc, wchar_t* argv[])
{
setlocale(LC_ALL, "chs");
wprintf(L"%s\n", L"中文字符");
}其关键代码为:setlocale(LC_ALL, "chs");配置地域化信息函数为什么一定要调用...
分类:
其他好文 时间:
2014-05-22 13:02:06
阅读次数:
254
生活中的单例
中国(China),位于东亚,是一个以华夏文明为主体、中华文化为基础,以汉族为主要民族的统一多民族国家,通用汉语。中国疆域内的各个民族统称为中华民族,龙是中华民族的象征。古老的中国凭借自身的发展依旧美丽的屹立于东方民族之林,闪耀着她动人的光彩,世界上只有一个中国,任何部分都是祖国不可分割的一部分,今天我们的设计模式就从伟大的祖国开始说起---单例模式。...
分类:
其他好文 时间:
2014-05-22 10:04:08
阅读次数:
194
Digital Roots
时间限制: 1 Sec 内存限制: 128 MB
提交: 91 解决: 29
[提交][状态][论坛]
题目描述
The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single d...
分类:
其他好文 时间:
2014-05-22 13:01:21
阅读次数:
223
数根
题目描述
我们通过把一个正数N的所有数字求和S来计算这个数的“数根”,如果累加的和为个位数,则这个数S即为N的“数根”;如果是两位和两位以上的数,那么重复这种累加求和的步骤,直到结果是个位数为止。 举例来说,对于正数N=24,将数字2和4相加得到6,因为6是个位数,所以6就是24的“数根”。再考虑N=39,将数字3和9相加得到12,因为12不是个位数,重复上面的计算,将数字1和2相加...
分类:
其他好文 时间:
2014-05-22 06:32:54
阅读次数:
268
系统测试是软件开发过程中的一个重要的组成部分,是贯穿整个软件开发生命周期、对软件产品进行验证和确认的活动过程。目的是尽快尽早发现在软件产品中所存在的各种问题:与用户需求、预定义的不一致性问题。
测试发现问题后,要找出其错误原因和位置,进行改正。
系统测试主要包括以下几部分:
静态测试方法包括软工检测和计...
分类:
其他好文 时间:
2014-05-22 06:47:53
阅读次数:
341
一。在Windows7 32bit ,IDE为VS2010中测试...
分类:
编程语言 时间:
2014-05-22 07:08:00
阅读次数:
469