Lỗi 'clr' is not recognized as an internal or external command, operable program or batch file.

#include <iostream>
#include <conio.h>
#include <windows.h>
using namespace std;
int main()
{
string a, b;
a = "Hunternguyen";
do
{
system("clr");
cout << "Nhap mat khau:";
getline(cin,b);
}while (a!=b);
cout << "\n\t\t:Chao mung ban:" <<endl;
}
Khi chạy thì không có lỗi ngưng khi hiện trong console thì nó báo "

clr' is not recognized as an internal or external command, operable program or batch file. "

.
Mọi người sửa giúp mình với mình không biết sai ở đâu:
 
Top