这是我用 c++ 关闭 PC 的程序,我使用 vs 代码编辑器和 WSL 来运行这个程序:
#include<iostream>
#include<stdlib.h>
int main()
{
system("C:\\Windows\\System32\\shutdown /i ");
}
我收到了这条消息sh: 1: C:WindowsSystem32shutdown: not found
。