/*
Program 1, How to write a C++ Program
Dan Bennett
September, 2015
This program will print a joke on the screen.
Algorithm:
Print the question
Print a space
Print the answer
Joke Source: http://homepage.eircom.net/~cronews/elep/elep.html
Collaborators: The CSCI 130 class, MWF and TR
*/
Joke Source: http://homepage.eircom.net/~cronews/elep/elep.html Collaborators: The CSCI 130 class, MWF and TR */ #include <iostream>
Joke Source: http://homepage.eircom.net/~cronews/elep/elep.html Collaborators: The CSCI 130 class, MWF and TR */ #include <iostream> using namespace std;
#include <iostream>
using namespace std;
int main() {
}
prefix to code block
{
code in code block
}
prefix to code block {
code in code block
}
using namespace std;
int main() {
return 0;
}