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