Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
This paste will be private.
#include <iostream> using namespace std; int print_function (int answer1,int answer2,int answer3){ return; } void main ( ) { int a; int b; int c; int d; cout << "What is the Capital of Georgia? " << endl; cout << "a) Candy land " << endl; cout << "b) Jesus USville " << endl; cout << "c) Atlanta " << endl; cout << "d) Bumfuck " << endl; cin >> a; cin >> b; cin >> c; cin >> d; int print_menu = print_function (a,b,d); cout << "Almost got it, try again! " << endl; }
From the Design Piracy series on my blog: