Description描述You task is to find minimal natural number N, so that N! contains exactly Q zeroes on the trail in decimal notation. As you know N! = 1*2...
分类:
其他好文 时间:
2015-03-07 14:03:59
阅读次数:
167
2015-02-15 Created By BaoXinjian一、摘要本文介绍如何通过unbounded task flows 和 xml menu metadata产生页面向导菜单项Step 1: Create a New Application and ProjectsStep 2: Crea...
分类:
其他好文 时间:
2015-03-07 13:59:49
阅读次数:
221
2015-02-15 Created By BaoXinjian一、摘要本文介绍如何通过unbounded task flows 和 xml menu metadata产生页面向导菜单项Step 1: Create a New Application and ProjectsStep 2: Crea...
分类:
其他好文 时间:
2015-03-07 13:55:35
阅读次数:
149
2015-02-14 Created By BaoXinjian一、摘要本文介绍如何通过Bound Taskflow创建Train页面向导 Step 1: Create a New Application and ProjectsStep 2: Create a Task Flow for Each...
分类:
其他好文 时间:
2015-03-07 13:55:27
阅读次数:
129
/*
算闰年,思路简单,按照题目的要求就行了
判断闰年的条件
((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)
*/
# include
int judge_leap(int year)
{
if(((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))
...
分类:
其他好文 时间:
2015-03-07 10:14:03
阅读次数:
152
基本思路同上一题一样,改改上一题的代码就能过了代码如下:/*
ID: 15674811
LANG: C++
TASK: dualpal
*/#include
#include
#include
#include
using namespace std;ofstream fout("dualpal.out");
ifstream...
分类:
其他好文 时间:
2015-03-06 22:17:28
阅读次数:
182
第一节课作业1.设计思想:随机产生30道题目,主体是一个for循环,在循环体中加上相应的内容,包括随机数函数得到两个运算数值以及运算符号,再利用switch,case结构输出相应的题目即可。2.源代码:#includeusing namespace std;void main(){ for(int ...
分类:
其他好文 时间:
2015-03-06 20:39:40
阅读次数:
149
水题,任意进制转换+回文判断
头脑不太清晰,代码写的很乱。。。。。代码如下:/*
ID: 15674811
LANG: C++
TASK: palsquare
*/#include
#include
#include
#include
using namespace std;ofstream fout("palsquare.o...
分类:
其他好文 时间:
2015-03-06 19:14:53
阅读次数:
134
问题简述: 配置的队列初始化的消费者线程占满了线程池。导致其他的再使用此线程池中线程不运行。不报错,不抛异常。线程的数量仅为为线程池的配置中的最小值。 <task:executor pool-size="100-150" queue-capac...
分类:
编程语言 时间:
2015-03-06 17:30:55
阅读次数:
208
Given two strings S1 and S2, S = S1 - S2 is defined to be the remaining string after taking all the characters in S2 from
S1. Your task is simply to calculate S1 - S2 for any given strings. However,...
分类:
其他好文 时间:
2015-03-06 11:21:17
阅读次数:
140