- 博客(5)
- 收藏
- 关注
原创 c#Socket实现服务器与客户端的异步交互
//服务器 解决方案using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Net.Sockets;using System.Net;using System.Threading;names...
2018-10-12 15:49:23 1961 1
原创 c#控制台教你玩转迷宫游戏
int x = 11; int y = 0;//定义x和y作为全局变量,作为初始移动坐标 int num = 0;// 用num的值判断移动方向 int[,] arr = new int[21, 21]//用二维数组定义迷宫 { { 1,1,1,1,1,1,1,1,1,1,1,1,1,...
2018-08-15 17:27:09 1355 1
原创 如何用C#计算一个人活了多久
Console.WriteLine(“请输入你的姓名”); string name = Console.ReadLine(); Console.WriteLine(“输入你的出生年月日”); int bornYear = Convert.ToInt32(Console.ReadLine()); ...
2018-08-07 17:16:56 735
原创 c# 新手函数 打印杨辉三角
public static int[][] Yanghui(int n)//定义 { int[][] a = new int[n][];//定义交错数组,n的值决定杨辉三角多少行 for (int i = 0; i < a.Length; i++) { a[i] ...
2018-08-06 16:33:21 1191
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人