Forum: C++ Jan 10th, 2009 |
| Replies: 6 Views: 346 Murtan, im actually comming from perl, thanks for trying although I wanted the program to choose a random element from one of the two lists. If I had wanted what your version gave me I couldve used... |
Forum: C++ Jan 10th, 2009 |
| Replies: 10 Views: 547 From what im reading it sounds like you would like to create a compiler? |
Forum: C++ Jan 10th, 2009 |
| Replies: 6 Views: 346 #include <iostream>
#include <cstdlib>
#include <cstdio>
#include <ctime>
using namespace std;
int main()
{
srand(time(0));
int number; |