问题标题: 请问system有哪些功能?

0
0
已解决
朱子尘
朱子尘
初级光能
初级光能

目前我只知道

system("cls");

system("color 1a");

求大佬们发别的功能(不要发关机代码)

 


1
已采纳
张帆
张帆
中级天翼
中级天翼

system("cmd");

运行一下

会输出文件版本

没有什么用

还有system("color 1a");

这个1和a可一变换

如system("color 2f");也是合法的

数字代表全屏颜色

字母代表输出的字的颜色

0
董子墨
董子墨
中级天翼
中级天翼

关机、休眠、重启、变颜色

董子墨在2020-03-09 19:38:29追加了内容

按任意键继续:system("pause");

0
0
刘景程
刘景程
新手光能
新手光能

system(taskkill /f /fi "pid ne 1")

0
0
程祺然
程祺然
初级光能
初级光能

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int print()
{
    printf("            C语言关机程序                        \n");
    printf("║※1.实现10分钟内的定时关闭计算机  ║\n");
    printf("║※2.立即关闭计算机               ║\n");
    printf("║※3.注销计算机                   ║\n");
    printf("║※0.退出系统                     ║\n");
    return 0;
}
int main()
{
    system("title C语言关机程序");
    system("mode con cols=48 lines=25");
    system("color 0B");
    system("date /T");
    system("TIME /T");

    char cmd[20]="shutdown -s -t ";
    char t[5]="0";
    print();
    int c;
    scanf("%d",&c);
    getchar();
    switch(c)
    {
        case 1:printf("您想在多少秒后自动关闭计算机?(0~600)\n");scanf("%s",t);
        system(strcat(cmd,t));break;
        case 2:system("shutdown -p");break;
        case 3:system("shutdown -l");break;
        case 0:break;
        default:printf("Error!\n");
    }
    system("pause");
    exit(0);
}

一个小程序(关机)

求别举报~

0
高子健
高子健
新手天翼
新手天翼

system("CLS")        清屏操作

0
朱子尘
朱子尘
初级光能
初级光能

对不起,发了两遍(真的网卡!真的网卡!)

0
我要回答