这是我从别的地方复制过来的,它在dev里报错了,请问这是为什么
#include<iostream>
#include<windows.h>
#include<stdlib.h>
#include <bits/stdc++.h>
using namespace std;
int main(){
setBackgroundColor(COLOR_YELLOW);
setTextColor(COLOR_RED);
print("1");
setBackgroundColor(COLOR_WHITE);
setTextColor(COLOR_BLUE);
print("2");
return 0;
}