pos.cs
来自「Sudoku as a CSP: Using algorithms and te」· CS 代码 · 共 25 行
CS
25 行
using System;
using System.Collections.Generic;
using System.Text;
namespace MySudoku
{
class Pos
{
public int ln;
public int col;
public Pos() { }
public Pos(int l, int c)
{
ln = l;
col = c;
}
public void Set(int l, int c)
{
ln = l;
col = c;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?