#include <bits/stdc++.h>
#include <conio.h>
#include <windows.h>
#include <ctime>
using namespace std;
int main(){
system("color a");
cout<<"======================================交互中心======================================"<<endl;
cout<<endl;
cout<<" 你好"<<endl;
cout<<" 请输入你的操作"<<endl;
cout<<" 1.启动任务管理器 2.开始使用计算机"<<endl;
for(;;){
if(KEY_DOWN(0x31)){
system("start Taskmgr.exe");
return 0;
}
if(KEY_DOWN(0x32)){
system("Start explorer.exe");
return 0;
}
}
return 0;
}
共 2 条回复
@Wind_Rises 多谢!问题修正了。
1.使用 GetAsyncKeyState 函数:这是 Windows API 提供的函数,用于检测按键状态。GetAsyncKeyState(0x31) 会检测 '1' 键的状态,0x32 检测 '2' 键的状态。
咱也不知道对错 毕竟已经好几年过去了