Yurttas/PL/OOL/Cplusplus/F/07/03/00/01/01/lists 10.cpp

 1/*
 2   Copyright(C) 2005
 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, 2005.
11   authorĀ : Salih Yurttas.
12
13   lists_10.cpp
14*/
15
16
17#include <vector>
18#include <string>
19
20using namespace std;
21
22vector<string> get_list_string();
23
24vector<int> get_list_int();
25
26void put_lists(const vector<string>&,
27               const vector<int>&);
28
29int main(int argc, char* argv[]) {
30
31  vector<string> dna_sequences_list = get_list_string();
32
33  vector<int> counts_list = get_list_int();
34
35  put_lists(dna_sequences_list,
36            counts_list);
37
38}