2014-12-01から1ヶ月間の記事一覧

エイト・クイーン

C#

エイト・クイーン - Wikipedia のプログラムを書いてみました。 using System; class Loc { public int Row { get; private set; } public int Col { get; private set; } public Loc(int row, int col) { Row = row; Col = col; } } class EightQueen { sta…

プロパティの練習

C#

using System;; public class Point { public int X { get; private set; } public int Y { get; private set; } public Point(int x, int y) { X = x; Y = y; } } public class Loc { public int Row { get; set; } public int Col { get; set; } } class T…