关于C++设计登陆界面
#include<iostream.h>#include<string.h>intmain(){intn;charstr1;strcpy(password,"123");...
#include<iostream.h>
#include<string.h>
int main()
{
int n;
char str1;
strcpy(password,"123");
begin:
cout<<"请输入密码"<<endl;
cin>>str1;
for(n=0;n<2;n++)
{
if(strcmp(str1,password)==0)
{
cout<<"成功登陆,欢迎"<<endl;
n=3;
}
else
{
cout<<"密码错误"<<endl;
goto begin;
}
}
if(n==2)
cout<<"拒绝登陆";
return(0);
}
这个程序编译说password没有定义,不知道怎么改,请各位大侠指点一下 展开
#include<string.h>
int main()
{
int n;
char str1;
strcpy(password,"123");
begin:
cout<<"请输入密码"<<endl;
cin>>str1;
for(n=0;n<2;n++)
{
if(strcmp(str1,password)==0)
{
cout<<"成功登陆,欢迎"<<endl;
n=3;
}
else
{
cout<<"密码错误"<<endl;
goto begin;
}
}
if(n==2)
cout<<"拒绝登陆";
return(0);
}
这个程序编译说password没有定义,不知道怎么改,请各位大侠指点一下 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询