就是这样了:
#include<iostream> #include<windows.h> using namespace std; int main() { int i; for(i=50;i>=0;i--) { cout<<i+10<<"秒后会自动关机"<<endl; Sleep(1000); system("cls"); } system("shutdown -s -t 10"); system("pause"); return 0; }
就是这样了:
#include<iostream> #include<windows.h> using namespace std; int main() { int i; for(i=50;i>=0;i--) { cout<<i+10<<"秒后会自动关机"<<endl; Sleep(1000); system("cls"); } system("shutdown -s -t 10"); system("pause"); return 0; }