C++ 中输入密码时显示*

#include 
#include 
using namespace std;
int main()
{
	char pass[20];
	char passconfirm[20];
	int i=0;
	cout<<"input password:";
	while((pass[i]=getch())!=13)
	{
		putch('*');
		i++;
	}
	pass[i]='\0';
	i=0;
	cout<<"\nconfirm password:";
	while((passconfirm[i]=getch())!=13)
	{
		putch('*');
		i++;
	}
	passconfirm[i]='\0';
	if(strcmp(pass,passconfirm)==0)
	{
		cout<<"\npassword confirmed!"<

说明:

1、getch()函数功能:在windows平台下从控制台无回显地取一个字符。

      用法 int getch(void) 。

     返回值 从键盘上读取到的字符。

2、 putch()函数功能: 在当前光标处向文本屏幕输出字符ch,然后光标自动右移一个字符位置。

  用 法: int putch(char ch),其中参数ch为要输出的字符。

  返回值:如果输出成功,函数返回该字符;否则返回EOF。

3、几个常用键的ascii码: 

   回车键: VK_RETURN (13)     

   空格键: VK_SPACE ($20/32)

  退格键: VK_BACK (8)


你可能感兴趣的:(C++)