Hi I have been writing (and learning) C++ and I write all my code correctly in the program (or so I think). I get this error:
"rands(int)", referenced from:
_main in ccgc4zY9.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
My code is this:
#include<iostream>
#include<stdlib.h>
#include<time.h>
#include<cmath>
using namespace std;
int rands(int n);
int hits[10];
int main () {
int n;
int i;
int r;
srand(time(NULL));
cout<<"enter a number of trials to run"<<endl;
cin>>n;
for (i=1; i<=n; i++) {
r=rands(10);
hits[r]++;
}
for (i=0; i<10; i++) {
cout<<i<<":"<<hits[i]<<"<Accuracy";
cout<<static_cast<double>(hits[i])/(n/10)<<endl;
}
return 0;
}
int randns(int n) {
return rand()%n;
}
Any help is appreciated!
rands. Did you meanrandns? – Wooble Aug 13 '11 at 2:57// This is line 42comment.) – Keith Thompson Aug 13 '11 at 3:00