定时关机c++源码

#include 
#include 
using namespace std;
int main()
{
	int i;
	cout<<"1、关机"<>i;
	switch(i)
	{
	case 1:{
		int j;
		cout<<"1、关机"<>j;
		switch(j)
		{
		case 1:
			system("shutdown -s -t 0");
			break;
		case 2:{
			int t;
			cout<<"1、30分钟后关机"<>t;
			switch(t)
			{
			case 1:
				system("shutdown -s -t 1800");
				break;
			case 2:
				system("shutdown -s -t 3600");
				break;
			case 3:
				system("shutdown -s -t 5400");
				break;
			case 4:
				system("shutdown -s -t 7200");
				break;
			case 5:
				return 0;
			default:
				return 0;
			}
			break;
		}
		case 3:
			system("shutdown -a");
			break;
		case 4:
			return 0;
		default:
			return 0;
		}
		break;
	}
    case 2:
		system("shutdown -r");
		break;
    case 3:
		system("shutdown -l");
		break;
    case 4:
		system("shutdown -h");
		break;
    case 5:
		return 0;
	default:
		return 0;
	}
	return 0;
}

你可能感兴趣的:(定时关机c++源码)