91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 4.96KB
    文件類型: .cpp
    金幣: 1
    下載: 0 次
    發布日期: 2021-01-29
  • 語言: C/C++
  • 標簽: 五子棋??

資源簡介


資源截圖

代碼片段和文件信息

#include
#include
using?namespace?std;

class?qipan
{
public:
?qipan()?{}
?~qipan()?{};


?//向上下左右,斜的方向
?char?left(int?x?int?y)
?{//檢查是否合適
?if?(x?>=?1?&&?x?<=?hight&&?y?-?1?>=?1?&&?y?-?1?<=?width)
?{
??return?q[x][y?-?1];
?}
?else?{
??return?‘F‘;
?}

?}
?char?right(int?x?int?y)
?{
?if?(x?>=?1?&&?x?<=?hight&&y?+?1?>=?1?&&?y?+?1?<=?width)
?{
??return?q[x][y?+?1];
?}
?else?{
??return?‘F‘;
?}

?}
?char?up(int?x?int?y)
?{
?if?(x?-?1?>=?1?&&?x?-?1?<=?hight?&&?y?>=?1?&&?y?<=?width)
?{
??return?q[x?-?1][y];
?}
?else?{
??return?‘F‘;
?}

?}
?char?down(int?x?int?y)
?{
?if?(x?+?1?>=?1?&&?x?+?1?<=?hight?&&?y?>=?1?&&?y?<=?width)
?{
??return?q[x?+?1][y];
?}
?else?{
??return?‘F‘;
?}

?}
?char?left_up(int?x?int?y)
?{
?if?(x?-?

評論

共有 條評論