建立一个窗体,三个控件:
一个Label;
一个textbox控件,Name为txtPassWord
一个button按钮,Name为btnOK
完整程序如下(程序已经测试,应该可以满足你的要求)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace mimachuangti
{
public partial class Form1 : Form
{
int count = 0; //记录点击次数
string strpassword = "123";//初始密码
public Form1()
{
InitializeComponent();
}
private void btnOK_Click(object sender, EventArgs e) //按钮响应程序
{
if (txtPassWord.Text == strpassword)
{
MessageBox.Show("欢迎进入");
}
else
{
if (count < 2)
{
MessageBox.Show("密码不正确,请重新输入");
txtPassWord.Focus();
count++;
}
else
{
MessageBox.Show("输入错误密码超过三次,系统即将关闭");
this.Close();
}
}
}
}
}
可以改成这样 Console.WriteLine("您的姓名:"); //提示输入姓名
string strName = Console.ReadLine();//获取输入的姓名
Console.WriteLine("欢迎您,{0}同志!",strName);//显示出来最终结果
Console.ReadLine();//防止控制台程序闪一下就自动关闭
string name;
Console.WriteLine("请输入您的名字:");
name=Console.ReadLine();
Console.WriteLine("欢迎您,{0}同志!",name);
Console.ReadLine();
就写下面三句:
System.Console.WriteLine("您的姓名:", args);
String ab = System.Console.ReadLine();
System.Console.WriteLine( "欢迎您,"+ab+"同志");
System.Console.ReadLine();//有这句可以让程序不要一闪而过~~~!
string name;
Console.WriteLine("请输入您的名字:");
name=Console.ReadLine();
Console.WriteLine("欢迎您,{0}同志!",name);
Console.ReadLine();
这就行了