1

嘿,刚刚找到了一个我想使用的名为 coni.h 的库来更改文本颜色。但是我在其中一个功能中遇到了错误: textcolour(RED); 它说它是未定义的。

#include <iostream>
#include <string>
#include <conio.h>
#include "Storyline.h"

using namespace std;

int main()
{

    Storyline story;
    story.Story("Title.txt");
    textcolor(MAGENTA+BLINK);
    cout << "Hello";





    getchar();
    getchar();
    }
4

1 回答 1

0

我只是使用了 system("color 0a"); 从"Windows.h"。我现在有了我需要的东西。

于 2012-11-22T02:47:23.717 回答