自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 1951 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 1347 1

原创 如何用C#计算一个人活了多久

Console.WriteLine(“请输入你的姓名”); string name = Console.ReadLine(); Console.WriteLine(“输入你的出生年月日”); int bornYear = Convert.ToInt32(Console.ReadLine()); ...

2018-08-07 17:16:56 725

原创 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 1181

原创 c#初学者前来报到

我是一枚菜鸟 ,希望大神指导,我来报道,快来教教我。

2018-08-06 10:59:50 164

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除