Search:

Type: Posts; User: YankeePride13

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    2,715

    nah we're not even doing VB, it just so happens...

    nah we're not even doing VB, it just so happens i've heard people refer to it, and i never played with it so i wanted to. THANKS ALOT :)

    PS thats why i went to gen discussions for this :)
  2. Replies
    8
    Views
    2,715

    out of curiosity...

    Is there any version of visual basic thats free? At school, I feel like i'm the only one who doesn't know visual basic, even though it has nothing to do with the course or anything really, i just...
  3. using YACC and lex to make your own shell...

    anyone know of any links that could help me with this? I've read the man pages on YACC and lex and im still a bit lost...here's what i have so far..

    YACC part...


    %{
    #include <stdio.h>

    int...
  4. Thread: Prolog

    by YankeePride13
    Replies
    5
    Views
    3,791

    %% I plan on adding a lot more examples then this...

    %% I plan on adding a lot more examples then this
    in('Kevin Bacon', 'Appollo 13').
    in('Tom Hanks', 'Appollo 13').
    in('Tom Hanks', 'Toy Story').
    in('Tim Allen', 'Toy Story').
    in('Kevin Smith',...
  5. Thread: Prolog

    by YankeePride13
    Replies
    5
    Views
    3,791

    lol thanks, i have the 2 in there so that to say...

    lol thanks, i have the 2 in there so that to say the difference in degrees...like when the first one fails it goes to the second one...

    like its ideally supposed to be like ('Tom Hanks' 'Kevin...
  6. Thread: Prolog

    by YankeePride13
    Replies
    5
    Views
    3,791

    Prolog

    Any prolog fans? I was attempting to go on the codecomments.com prolog forum, but they're down for the moment so I was curious to see if anyone here knew any prolog...Basically I'm trying to write a...
  7. Replies
    75
    Views
    19,220

    Name: Corey Timezone: EST AIM: YankeePride13...

    Name: Corey
    Timezone: EST
    AIM: YankeePride13
    Yahoo: N/A
    MSN: [email protected]
    ICQ: N/A
  8. Replies
    15
    Views
    4,785

    i'm totally gonna pick this up after i pick up...

    i'm totally gonna pick this up after i pick up the screenless monitor. Those bad boys are flyin off the shelves
  9. Replies
    7
    Views
    2,290

    i read that as Google spyware.

    i read that as Google spyware.
  10. Thread: Scheme

    by YankeePride13
    Replies
    23
    Views
    5,331

    Scheme is not my favorite language :) i prefer C...

    Scheme is not my favorite language :) i prefer C or Java...
  11. Thread: Scheme

    by YankeePride13
    Replies
    23
    Views
    5,331

    anyways i figured it out myself, thanks

    anyways i figured it out myself, thanks
  12. Thread: Scheme

    by YankeePride13
    Replies
    23
    Views
    5,331

    well yea i realized this ....and i have been...

    well yea i realized this ....and i have been working through it, hense the multiple posting...i mean you really only helped me with one thing, which i wouldnt constitute as a "walkthrough" but, if...
  13. Thread: Scheme

    by YankeePride13
    Replies
    23
    Views
    5,331

    here's the updated code... ;sum num num num ->...

    here's the updated code...

    ;sum num num num -> num
    (define (sum num1 num2 num3)
    (+ num1 num2 num3))

    "Examples of sum"
    (sum 0 0 0) "should be 0"
    (sum 0 0 1) "should be 1"
    (sum 0 1 1)...
  14. Thread: Scheme

    by YankeePride13
    Replies
    23
    Views
    5,331

    never mind i realized my error in the names...now...

    never mind i realized my error in the names...now it runs but im getting odd results from the numbers im inputting...
  15. Thread: Scheme

    by YankeePride13
    Replies
    23
    Views
    5,331

    thanks... heres my code thus far ;sum num num...

    thanks... heres my code thus far

    ;sum num num num -> num
    (define (sum num1 num2 num3)
    (+ num1 num2 num3))

    "Examples of sum"
    (sum 0 0 0) "should be 0"
    (sum 0 0 1) "should be 1"
    (sum 0 1...
  16. Thread: Scheme

    by YankeePride13
    Replies
    23
    Views
    5,331

    ;;sum num num num -> num ;(define (sum num1 num2...

    ;;sum num num num -> num
    ;(define (sum num1 num2 num3)
    ; (+ num1 num2 num3))
    ;
    ;"Examples of sum"
    ;(sum 0 0 0) "should be 0"
    ;(sum 0 0 1) "should be 1"
    ;(sum 0 1 1) "should be 2"
    ;(sum 1 2...
  17. Thread: Scheme

    by YankeePride13
    Replies
    23
    Views
    5,331

    ;readTillNum void -> num (define (readTillNum) ...

    ;readTillNum void -> num
    (define (readTillNum)
    (local [(define answer (read))]
    (if (number? answer)
    answer
    (readTillNum))))
    ;usersNumbers void -> void
    (define...
  18. Thread: Scheme

    by YankeePride13
    Replies
    23
    Views
    5,331

    Scheme

    I'm having trouble with my scheme program and I was wondering if anyone knew any boards that dealt with the Scheme programming language so that perhaps I could get some help there, anyone know of any?
  19. Thread: chdir()

    by YankeePride13
    Replies
    3
    Views
    24,354

    chdir()

    i'm currently using chdir() in my program, and I got it to work...however... I don't know how to cd to the root directory, or how to cd up one directory for that matter....here's the code...


    ...
  20. this is the updated code... #include...

    this is the updated code...



    #include <iostream>
    #include <stdlib.h>
    #include <string>
    #include <unistd.h>

    void main()
  21. Replies
    9
    Views
    1,290

    any ideas?

    any ideas?
  22. Replies
    9
    Views
    1,290

    this is the updated code... #include...

    this is the updated code...



    #include <iostream>
    #include <stdlib.h>
    #include <string>
    #include <unistd.h>

    void main()
  23. Replies
    9
    Views
    1,290

    ok..now my only problem is figuring out a way to...

    ok..now my only problem is figuring out a way to get the program to distinguish between the cd part, and the directory that it wants to go to...
  24. Replies
    9
    Views
    1,290

    what is the name of the include file that...

    what is the name of the include file that _chdir() function is in??
  25. Replies
    9
    Views
    1,290

    thanks for the input...but how would i go about...

    thanks for the input...but how would i go about doing the cd function?
Results 1 to 25 of 36
Page 1 of 2 1 2