110,968
社区成员
发帖
与我相关
我的任务
分享
while (a == -1)
{
Console.WriteLine("邮件地址格式不正确!");
Console.Write("请重新输入一个邮箱地址:");
email = Convert.ToString(Console.ReadLine());
a = email.IndexOf("@");
}
string user = email.Substring(0, a);
string yu = email.Substring(a + 1, email.Length - a - 1);
if(yu==".com")
Console.WriteLine("您所输入的邮箱的用户名为:{0},域名为:{1}",user,yu);
Console.ReadKey();