Name:
Anonymous
2008-04-26 19:39
Create a program that gives this as its output:
http://pastebin.ca/998836
Name:
Anonymous
2008-04-26 21:13
#include <string>
#include <iostream>
const String PrintOutput = "DURRRRRR"; // Text to be printed
int main()
{
cout << PrintOutput;
return 0;
}