04/06/04 09:46 Tvj07fVB
>>26
STLを使ったソースを参考にしてるな。STLを使わないんだったら
#include <ctime>
#include <cstdlib>
#include <iostream>
using namespace std;
を
#include <time.h>
#include <stdlib.h>
#include <iostream.h>
にしなさい。少なくとも今のソースにSTLのヘッダは不要。ゆえに
コンパイルも通るから。
STLは気が向いたら勉強すれば良いと思う。