| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 666 人关注过本帖
标题:求高手帮忙做一道编程题
取消只看楼主 加入收藏
renyiconan
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2010-1-2
结帖率:100%
收藏
 问题点数:0 回复次数:0 
求高手帮忙做一道编程题
编程题:

1、请完成登陆验证:

1)、如果输入的用户名是ASP, 密码是ASP,则登录成功并触发登录成功事件,输出“登录成功”;

2)、反之,则触发登录失败事件,输出“用户名或密码错误”;



EventReceiver.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleLoginTest
{
class EventReceiver
{
public void Success()
{
Console.WriteLine("登录成功");
}

public void Failed()
{
Console.WriteLine("登录失败");
}
}
}


Login.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleLoginTest
{
public delegate void LoginEventHandler();
class Login
{
public event LoginEventHandler loginSucceed;
public event LoginEventHandler loginFailed;

public void DoCheck(string userName, string password)
{
if (userName == "asp" && password == "asp")
{
if (loginSucceed != null)
{
loginSucceed();
}
}
else
{
if (loginFailed != null)
{
loginFailed();
}
}
}
}
}



Program

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleLoginTest
{
class Program
{
static void Main(string[] args)
{
string userName = string.Empty;
string password = string.Empty;
Login login = new Login();
EventReceiver er = new EventReceiver();

login.loginSucceed += new LoginEventHandler(er.Success);
login.loginFailed += new LoginEventHandler(er.Failed);
Console.WriteLine("请输入用户名");
userName = Console.ReadLine();
Console.WriteLine("请输入密码");
password = Console.ReadLine();
login.DoCheck(userName, password);

Console.ReadKey();
}
}
}


这是几个cs文件,上面那个程序时我要写的,麻烦高人再整合一下
搜索更多相关主题的帖子: 编程 
2010-01-03 01:54
快速回复:求高手帮忙做一道编程题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.032935 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved