C++ Pokedex

Pokedex Beta 2.
Fil: Pokedex.DTA – Må ligge samme sted som kildefilen.

#include <iostream>
#include <fstream>
#include <cstring>
#include <string>
#include <iomanip>
#include <windows.h>

using namespace std;

const int MAXPOKEMON = 151;
const int NAVNLEN = 80;

class Pokemon {
private:
int nr;
char navn[NAVNLEN];
char type[NAVNLEN];
char