Write a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character'.'.You may assume that there will be on...
分类:
其他好文 时间:
2014-07-16 21:52:48
阅读次数:
177
最近想学习下log4net,写了个很简短的使用例子。用少的代码,可以保证程序运行起来。配置文件: 代码: public class Program {...
分类:
Web程序 时间:
2014-07-16 21:37:07
阅读次数:
183
Write a program to sort a stack in ascending order (with biggest items on top). You may use at most one additional stack to hold items, but you may no...
分类:
其他好文 时间:
2014-07-16 20:35:03
阅读次数:
288
using System;using System.Collections.Generic;using System.Text;namespace myTest{ class Program { static void Main(string[] args) ...
分类:
其他好文 时间:
2014-07-16 20:04:01
阅读次数:
164
1 public class Program 2 { 3 public event EventHandler ehdl=null; 4 public Program() 5 { 6 ehdl += Program_e...
分类:
其他好文 时间:
2014-07-16 19:50:25
阅读次数:
109
用于打印杨辉三角的程序,有多种算法仅提供一种PRogram yh (input,ouput);var m,n,c:integer;BeginFor m:=0 TO 10 Do Begin c:=1; write(c:40-3*m); For n:=1 To m Do begin c:=c+(m-n+...
分类:
其他好文 时间:
2014-07-16 19:38:04
阅读次数:
148
不要消灭星星 Pascal小游戏 Chaobs改编自pascal吧控制台小游戏嘛,就当是练习一下结构化的写法。program wxtw;uses crt;type zbdy=record x,y:integer; end;var n,i,x,y,t,sjs:integer; ml:char;zb: ...
分类:
其他好文 时间:
2014-07-16 19:37:07
阅读次数:
294
一个很经典的井字棋游戏 Pascal源码Chaobs奉上注意:1.有的FP版本不支持汉语,将会出现乱码。2.别想赢电脑了,平手不错了。井字过三关:program TicTacToe;uses crt;vara:Array [1..3] of Array [1..3] of char;b:Array ...
分类:
其他好文 时间:
2014-07-16 19:34:37
阅读次数:
353
Description
Magic Numbers
Write a program that finds and displays all pairs ofintegers and
such that:
neither nor
have any digits repeated; and , where
N is a given i...
分类:
其他好文 时间:
2014-07-10 20:10:06
阅读次数:
238
本文所使用软件百度云盘网址:http://pan.baidu.com/s/1kTDRFwz1安装JDK操作系统:windows7-64bit版本号:jdk-7u51-windows-x64安装路径(默认):C:\ProgramFiles\Java\jdk1.7.0_51\安装到:C:\Program...
分类:
编程语言 时间:
2014-07-10 15:04:59
阅读次数:
251