パスワード プログラムが動作しません... dev c++を使用していますが、conio.h を認識しません...助けてください...どうすればよいですか??別のエラーがある可能性があります...修正するように言ってください.tnx
#include<string.h>
#include<iostream>
#include<stdio.h>
#include<conio.h>
using namespace std;
void main()
{
char pass[5];
int o;
string password= "password";//this is the password
for(int i=0;i<5 ;i++)
{
pass[i]=_getch();
_putch('*');
}
string a(pass);
if(a==password)
{cout<<"correct"<<endl;}
else
{cout<<"wrong"<<endl;}
}