int i,sec min;
char ch[20]="shutdown -s -t ";
printf("请输入多少分钟后关机:");
scanf("%d",&min);
sec=min*60;//怎么把sec里面的数字插入到ch字符串特定位置
system(ch);
相关分类