Forum: Computer Science Jun 24th, 2004 |
| Replies: 12 Views: 4,838 AI seems to be a limited scope of what it can be used for. Just the base AI, can only learn information, and link common data, make connections between words, things like that.
But how it's... |
Forum: C Jun 24th, 2004 |
| Replies: 12 Views: 15,441 Ah, i see where I made that mistake. That's what you get for doing recursion at 3am ;) |
Forum: C Jun 24th, 2004 |
| Replies: 5 Views: 2,542 class time
{
private:
int hour, minute;
public:
void set(int h, int m, bool am);
void display();
};
void time::set(int h, int m, bool am) |
Forum: C Jun 24th, 2004 |
| Replies: 12 Views: 15,441 #include<stdio.h>
#include<conio.h>
#include<assert.h>
int is_prime(int n);
void main(void)
{
int n=0;
clrscr(); |
Forum: Computer Science Jun 24th, 2004 |
| Replies: 67 Views: 24,995 Hmm. my hardest program is probably a recursive binary tree program in C++, that could be sorted with a few different algorithms. Nothing too hard really, but I have had some large pain in the ass... |
Forum: Computer Science Jun 24th, 2004 |
| Replies: 4 Views: 5,590 I took AP CS A, B, and AB. They were all in C++. I think the first 2 were fun, and not too tough. But the AB course was an independent study, me, another student, and the teacher. I got a 3,... |