65,210
社区成员
发帖
与我相关
我的任务
分享#include<iostream>
#include <windows.h>
using namespace std;
int main()
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),4);
cout<<"hello worldhello!";
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),0x0007);
system("pause");
return 0;
}