blob: c1122f6e51aa470bd2258425bb8a164ff691ad0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Objetivos:
* - <iostream>: cin y cout
* - <iomanip>: formato
* - Redireccionamiento stdin y stdout
* - operadores << y >>
* - No arreglos ("puro archivo")
* - No lectura ni escritura de C. (E.g., get(), getline(), unget(), printf())
*/
#include "fun.h"
int main(int argc, char *argv[])
{
readRecordsWriteReport();
return 0;
}
|