/* obfuscated 99 bottles program in c++ coded by paddy obrien */ #include using namespace std; void beer(int,int); void wall(); int main() { int bottles =99; while (bottles) {for(int i=0; i < 2; ++i) beer( bottles,i); cout << "take one down pass it around" << endl; beer (--bottles, 0) ;cout << endl;} return 0 ;} void beer (int bottles, int i) {cout << bottles << " bottle(s) of beer "; if(!i) wall(); else cout << endl;} void wall(){ cout << "on the wall" <