首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴日知己所无的代码贴全部
/**
 * Provides a method to encode any string into a URL-safe
 * form.
 * Non-ASCII characters are first encoded as sequences of
 * two or three bytes, using the UTF-8 algorithm, before being
 * encoded as %HH escapes.
 * <p/>
 * Created: 17 April 1997
 * Author: Bert Bos <bert@w3.org>
 * <p/>
 * URLUTF8Encoder: http://www.w3.org/International/URLUTF8Encoder.java
 * <p/>
......................
阅读全部 | 2015年2月28日 23:12
Last non zero digit of (1!) is: 1
Last non zero digit of (2!) is: 2
Last non zero digit of (3!) is: 6
Last non zero digit of (4!) is: 4
Last non zero digit of (5!) is: 2
Last non zero digit of (6!) is: 2
Last non zero digit of (7!) is: 4
Last non zero digit of (8!) is: 2
Last non zero digit of (9!) is: 8
Last non zero digit of (10!) is: 8
Last non zero digit of (11!) is: 8
Last non zero digit of (12!) is: 6
......................
阅读全部 | 2014年8月14日 14:29
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>

// 注意:如果修改了SUDOKU_SIZE的定义值,需要检查一下squareCheck函数的代码是否正确
const int SUDOKU_SIZE = 9; // 最好定义一个常量,而不是使用魔数(Magic Number)

const int SUDOKU_MAXNUM = 9;
const int SUDOKU_MINNUM = 1;

// 数组检查
// 不重复不遗漏且无规定外数字时返回true
// 否则返回false
......................
阅读全部 | 2014年7月27日 22:41
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <tchar.h>

//ref_start[http://www.w3.org/TR/PNG/]
/* Table of CRCs of all 8-bit messages. */
unsigned long crc_table[256];

/* Flag: has the table been computed? Initially false. */
int crc_table_computed = 0;

/* Make the table for a fast CRC. */
......................
阅读全部 | 2014年6月15日 07:27
1
日知己所无