c++输入密码以星号代替

#include 
#include //注意这里的头文件!
#include
using namespace std;

void main( void )
{
 cout<<"请输入密码: "<



带有退格键的密码输入

#include
#include
using namespace std;
int main()
{
char password[100];
int index=0;
while(1)
{
char ch;
ch=getch();
if(ch==8) //退格键
{
if(index!=0)
{
cout<


转载于:https://www.cnblogs.com/oversea201405/p/3766980.html

你可能感兴趣的:(c++输入密码以星号代替)