2013年11月18日
摘要: 已有如下代码,按要求增加功能:static void Main(string[ ] args){ string email; // 电子邮件地址 Console.WriteLine("请输入你的邮箱:"); email = Console.ReadLine(); Console.WriteLine("你的邮箱是 {0}", email);}需实现的功能:1、 输入 yes 时,程序循环执行2、 兼容以下各种形式 yes(YES、yes、 YeS …..)3、 提取邮箱的用户名实现代码如下:using System;using System.Collect 阅读全文
posted @ 2013-11-18 23:36 Forgiving 阅读(287) 评论(0) 推荐(0) 编辑