Fixed! Now with NO errors OR Warnings :D and in the Longcat colours too! maybe if /r/ I'll make the cat white and the back black, but not atm
//Longcat for Visual Studio 2005 C++
#include <iostream> //Includes input/output library
using namespace std; //Removes need for std:: all the time
int main() //Main Function - required
{
system("COLOR F8"); //Changes background colour to white and text colour to gray
int longcat = 0; //User input length of Longcat
cout << "How long is Looooooooongcat!?"; //Message output to user
cin >> longcat; //User input
//Longcat image displayed on screen - cuter than before
//Mid-section
for( int c = 0 ; c <= longcat ; c++) //For loop - will output the mid-section of Longcat for as many units as stated by the user
{
cout << " | | \n"; //Midsection to be output
}//End For Loop