摘要: 阅读全文
posted @ 2017-10-09 20:10 小新夏到你 阅读(82) 评论(0) 推荐(0)
摘要: static void Main(string[] args) { string s_text, s_key, s_result = null; char ch; int i; Console.WriteLine("请输入原字符串:"); s_text = Console.ReadLine(); C 阅读全文
posted @ 2017-09-19 09:28 小新夏到你 阅读(79) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-09-19 09:06 小新夏到你 阅读(107) 评论(0) 推荐(0)
摘要: contact: 字段名 说明 类型 id 主键 int real_name 联系人真实名称 必填, Char(20) user_id 用户账号。 Char(20) email 联系人邮件 Char(40) mobile 联系人手机。 Char(20) comment 备注 Text dormito 阅读全文
posted @ 2017-09-19 09:04 小新夏到你 阅读(217) 评论(0) 推荐(0)
摘要: namespace No._1{ class Program { static void Main(string[] args) { Console.WriteLine("请输入一个数"); int n, i, j=0; n = int.Parse(Console.ReadLine()); if ( 阅读全文
posted @ 2017-09-19 09:01 小新夏到你 阅读(90) 评论(0) 推荐(0)
摘要: namespace No._1{ class Program { static void Main(string[] args) { Console.WriteLine("请输入一个数"); int n, i, j=0; n = int.Parse(Console.ReadLine()); if ( 阅读全文
posted @ 2017-09-19 09:01 小新夏到你 阅读(74) 评论(0) 推荐(0)
摘要: .Net能干什么? 开发桌面应用程序(winform); Internet应用程序(ASP.Net) .Net的两种交互模式: B/S & C/S 一、C#基本语法 1、修饰符 修饰符static表示方法不能在类的实例上执行,因此不必先实例化类再调用。例如:WriteLine()方法,把一行文本写到 阅读全文
posted @ 2017-09-17 13:01 小新夏到你 阅读(142) 评论(0) 推荐(0)