CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
This program displays a message out to the screen in color with a color background
This program will not work on sololearn. So try the code on your computer.
*/
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
int b =15;
for(int a=0;a<256;a++)
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),a);
cout<<"TEXT";
if(a==b)
{
cout<<endl;
b = b + 16;
}
}
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run