/*-----
Contract: main: void -> int
Purpose: BURP! 15 times to the screen, each time on its
own line
Examples: when called, this program should print the following
to the screen:
BURP!
BURP!
...
BURP!
(a total of 15 lines)
by: Sharon M. Tuttle
last modified: 4-11-10
-----*/
#include <iostream>
#include "show_burp.h"
using namespace std;
int main()
{
const int NUM_BURPS = 15;
show_burp(NUM_BURPS);
return EXIT_SUCCESS;
}