📜  在C ++中为文本和控制台背景着色

📅  最后修改于: 2021-05-31 16:42:43             🧑  作者: Mango

在C++编程中,输出屏幕的默认背景是黑色,文本颜色是白色,任务是在输出屏幕中同时为背景和文本着色。

头文件

为文本和背景着色所需的头文件可以是给定的头文件之一:

颜色控制台的语法

以下是相同的程序:

C++
// C++ program for the coloring the
// background and text with
// different color
#include 
  
// Header file to change color of
// text and background
#include 
using namespace std;
  
// Driver Code
int main()
{
    // Color of the console
    HANDLE console_color;
    console_color = GetStdHandle(
        STD_OUTPUT_HANDLE);
  
    // Print different colors from 1
    // to 50 on the output screen
    for (int P = 1; P < 50; P++) {
  
        // P is color code of the
        // corresponding color
        SetConsoleTextAttribute(
            console_color, P);
  
        // Print Statement
        cout << P << " Hello Geeks, "
             << "good night!!!";
    }
  
    return 0;
}


输出:

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”