Yurttas/PL/OOL/CS/F/02/05/10/00/03/a 09.cpp

 1/*
 2   Copyright(C) 2003
 3   All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
 4
 5   Permission to use, copy, modify, and distribute this
 6   software and its documentation for EDUCATIONAL purposes
 7   and without fee is hereby granted provided that this
 8   copyright notice appears in all copies.
 9 
10   date   : September 1, 2003.
11   authorĀ : Salih Yurttas.
12
13   a_09.cpp
14*/
15
16
17#include "parameters.h"
18
19#include "common.h"
20
21#include "f_specs.h"
22
23int main(int argc, char* argv[]) {
24
25  do {
26    vector<string> animals = get_data();
27
28    vector<string> u_animals = replace_with_upper(animals);
29
30    print_animals(animals,
31                  u_animals);
32  }
33  while((YN)(toupper(get_char("Yes/No")))=='Y');
34
35}