📅  最后修改于: 2023-12-03 15:35:13.796000             🧑  作者: Mango
system(color)
是 C 语言中一个用于控制控制台颜色的函数。它可以在程序运行时更改控制台的前景色和背景色,使得输出变得更加清晰易读。
#include <stdlib.h>
int system(const char* command);
command
:字符串类型,表示需要执行的命令。
该函数执行成功后会返回一个非负数。如果它执行失败,则返回 -1。
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("This is the default text color.\n");
// 更改文本颜色
system("color 02");
printf("This is the changed text color.\n");
// 恢复默认文本颜色
system("color");
return 0;
}
# system(color) - C 编程语言
`system(color)` 是 C 语言中一个用于控制控制台颜色的函数。它可以在程序运行时更改控制台的前景色和背景色,使得输出变得更加清晰易读。
## 函数原型
```c
#include <stdlib.h>
int system(const char* command);
command
:字符串类型,表示需要执行的命令。
该函数执行成功后会返回一个非负数。如果它执行失败,则返回 -1。
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("This is the default text color.\n");
// 更改文本颜色
system("color 02");
printf("This is the changed text color.\n");
// 恢复默认文本颜色
system("color");
return 0;
}