摘要: #include <STDIO.H>#include <string.h>struct cell { int index; char symbol[2];};int main(){ int player=0,//玩家 winner=0,//判断是否结束 choice=0,//玩家输入的改变的格子的数字 row=0,//格子的行的索引 column=0;//格子的列的索引 struct cell board[9]={{1,"1"},{2,"2"},{3,"3"}, {4,... 阅读全文
posted @ 2013-06-04 21:08 ╰Mr.宅先生╮ 阅读(215) 评论(0) 推荐(0)
摘要: --CREATE TABLE [dbo].[Student] ( -- [StudentId] [int] IDENTITY (1, 1) NOT NULL , -- [StudentName] [nvarchar] (40) COLLATE Chinese_PRC_CI_AS NULL , -- [StudentPassword] [nvarchar] (20) COLLATE Chinese_PRC_CI_AS NULL , -- [EmailAddress] [nvarchar] (40) COLLATE Chinese_PRC_CI_AS NULL , -- [Da... 阅读全文
posted @ 2013-06-02 00:04 ╰Mr.宅先生╮ 阅读(207) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Configuration;using System.Net;using System.Net.Mail;namespace 收发邮件{ public partial class Form1 : Form { ... 阅读全文
posted @ 2013-04-18 15:03 ╰Mr.宅先生╮ 阅读(113) 评论(0) 推荐(0)