Linkin Park is an American rock band from Agoura Hills, California. Formed in 1996, the band rose to international fame with their debut album Hybrid Theory (2000), which was certified Diamond by the RIAA in 2005 and multi-platinum in several other countries. Their following studio album Meteora continued the band's success, topping the Billboard 200 album chart in 2003, and was followed by extensive touring and charity work around the world. In 2003, MTV named Linkin Park the sixth-greatest band of the music video era and the third-best of the new millennium. Billboard ranked Linkin Park No. 19 on the Best Artists of the Decade chart. In 2012, the band was voted as the greatest artist of the 2000s in a Bracket Madness poll on VH1. In 2014, the band was declared as the Biggest Rock Band in the World Right Now by Kerrang! I'm a die hard fan of Linkin Park and I'm a programmer so I mixed these two things! The code goes as follows:
#include<iostream.h> #include<conio.h> void linkinparklogo(int posx, int posy) //Linkin Park Logo Starts { highvideo(); for(int slant=0; slant<=10; slant++) //Slant Part of "L" { for(int l=1; l<=3; l++) { gotoxy(posx+10-slant+l,posy+1+slant); cprintf("="); } } getch(); for(int straight=0; straight<=20; straight++) //Lower Part of Horizontal"L" { gotoxy(posx+4+straight,posy+11); cprintf("="); } getch(); for(straight=0; straight<=22; straight++) //Upper Part of Horizontal "L" { gotoxy(posx+3+straight,posy+10); cprintf("="); } getch(); for(slant=0; slant<=5; slant++) //Right Slant Part of "P" { for(int p=1; p<=3; p++) { gotoxy(posx+21-slant+p,posy+9-slant); cprintf("="); } } getch(); gotoxy(posx+17,posy+5); cprintf("="); gotoxy(posx+16,posy+5); cprintf("="); getch(); for(slant=0; slant<=9; slant++) //Left Slant Part of "P" { for(int ps=1; ps<=3; ps++) { gotoxy(posx+14-slant+ps,posy+6+slant); cprintf("="); } } } //Linkin Park Logo Function Created void main() { clrscr(); linkinparklogo(0,0); getch(); }
0 comments