- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 1
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
5 Posted Topics
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 "Projects" that I wouldn't call programs.
[QUOTE]But againnnnn... i want to know how can i convert the iterative version into a recursive one. Will anyone help me convert this prime checking function into a recursive one?[/QUOTE] [CODE] #include<stdio.h> #include<conio.h> #include<assert.h> int is_prime(int n); void main(void) { int n=0; clrscr(); printf("An integer "); scanf("%d",&n); assert(n > 1); …
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 getting used is what the real question is. When will dell switch to AI …
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, other kid got a 5 (sick nerd genius), …
[QUOTE=mike3x1]Hi i'm having a few problems..i'm trying to do a time class that holds the hr, min , and meridian( am or Pm). this is what i have so far. For the void set how would i set the char mer[] to am or pm. [/QUOTE] [CODE] class time { …
The End.