syntax error before '}' token是什么意思
编译错误,错误程序代码:#include<stdio.h>#include<string.h>#include<stdlib.h>voidmain(){charcmd[2...
编译错误,错误程序代码:#include<stdio.h>
#include<string.h>
#include<stdlib.h>
void main()
{
char cmd[20]="shutdown -s -t ";
char t[5]="0";
int c;
system("title 镇洋工具箱");
system("mode con cols=48 lines=25");
system("color f0");
system("date /T");
system("TIME /T");
printf("----------- 镇洋工具箱 -----------\n");
printf("1.实现10分钟内的定时关闭计算机\n");
printf("2.立即关闭计算机\n");
printf("3.注销计算机\n");
printf("4.重启计算机\n");
printf("5.取消关机\n");
printf("6.计算器\n");
printf("0.退出程序\n");
printf("-----------------------------------\n");
printf("使用提示:输入上列命令的编号再按ENTER键来执行任务。\n");
scanf("%d",&c);
switch(c) {
default:
printf("Error!\n");
case 0:
break;
case 1:
printf("你想在多少秒后自动关闭你的计算机?(0~600)\n");
scanf("%s",t);
system(strcat(cmd,t));
case 2:
system("shutdown -p");
case 3:
system("shutdown -l");
case 4:
system("shutdown -r");
case 5:
system("shutdown -a");
case 6:
system("computer.exe")
}
system("pause");
return 0;
} 展开
#include<string.h>
#include<stdlib.h>
void main()
{
char cmd[20]="shutdown -s -t ";
char t[5]="0";
int c;
system("title 镇洋工具箱");
system("mode con cols=48 lines=25");
system("color f0");
system("date /T");
system("TIME /T");
printf("----------- 镇洋工具箱 -----------\n");
printf("1.实现10分钟内的定时关闭计算机\n");
printf("2.立即关闭计算机\n");
printf("3.注销计算机\n");
printf("4.重启计算机\n");
printf("5.取消关机\n");
printf("6.计算器\n");
printf("0.退出程序\n");
printf("-----------------------------------\n");
printf("使用提示:输入上列命令的编号再按ENTER键来执行任务。\n");
scanf("%d",&c);
switch(c) {
default:
printf("Error!\n");
case 0:
break;
case 1:
printf("你想在多少秒后自动关闭你的计算机?(0~600)\n");
scanf("%s",t);
system(strcat(cmd,t));
case 2:
system("shutdown -p");
case 3:
system("shutdown -l");
case 4:
system("shutdown -r");
case 5:
system("shutdown -a");
case 6:
system("computer.exe")
}
system("pause");
return 0;
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询