-2
//THIS IS A SAMPLE CODE
#include"iostream"
#include"string.h"
using namespace std;
int main()
{
char pass[]="ABCD";
char test[];
cout<<"Enter the password:";
cin>>test;
if(strcmp(pass,test)==0)
return 1;
else
return 0;
}
如何在有人試圖打開文件夾時使其執行?就像一個文件夾鎖定程序。我是新來的,請幫忙。我用C++創建了一個簡單的密碼程序。我如何應用它,假設一個文件夾?
這將取決於您的操作系統。通常訪問文件夾是由操作系統控制的,因此每次運行自定義例程都會非常困難(如果可能的話)。 –