Search:

Type: Posts; User: skyline

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    2,104

    i hope the s.koreans win. the germans can win...

    i hope the s.koreans win. the germans can win the cup next time on their home turf. (actually i really wish japan would have advanced more but, oh well... :rolleyes: )
  2. Replies
    19
    Views
    3,899

    i second that. that Khan is a MANIMAL!! i...

    i second that. that Khan is a MANIMAL!! i believe he only gave up one goal this whole tournament.
  3. Replies
    19
    Views
    3,899

    no sh*t huh? it was funny watching little landon...

    no .......... huh? it was funny watching little landon donovan run around the big german defense (heck even one of their forwards was like well over 6ft).

    anyway, i wouldn't be surprised if the south...
  4. Thread: how much math?

    by skyline
    Replies
    22
    Views
    5,288

    computer programming with a standard language...

    computer programming with a standard language (like c) in itself does not require much math (only arithmetic ops: +, -, /, *). but just knowing how to program in c doesn't do anything for anybody. ...
  5. Thread: Student Loans

    by skyline
    Replies
    37
    Views
    6,746

    you forgot to mention that's an annual cost as...

    you forgot to mention that's an annual cost as well. i got one more year to go at a private school and by the time i graduate i'll be about 60k usd in debt. Not to mention about 40k usd in cash i...
  6. Replies
    3
    Views
    2,255

    Re: Access books, tutorials, source

    do it in vb, specifically a subset of vb (called vba) already built in access. it's really quite easy, create your ui with graphical tools, write vba code to implement the handler for the ui...
  7. Replies
    19
    Views
    6,030

    unless you have over a 4.0 high school gpa; at...

    unless you have over a 4.0 high school gpa; at least 1450 on sat; already have college credits from either ap tests or already taking college courses at some local college, and all kinds of...
  8. Thread: a* question

    by skyline
    Replies
    6
    Views
    1,383

    at this point i don't have any code, still in the...

    at this point i don't have any code, still in the design phase of things. i just wanted to ask a question about the a* search algorithm in general. actually i think i'm ok now. basically my end...
  9. Thread: a* question

    by skyline
    Replies
    6
    Views
    1,383

    a* question

    if i wanted to build a program that solves simple puzzles using a* search algorithm, do i need to consider avoiding repeated states when expanding frontier in state space? I ask this because...
  10. Replies
    8
    Views
    4,269

    yup, compsci isn't just programming; gotta know...

    yup, compsci isn't just programming; gotta know the hardware stuff too! and compeng isn't just hardware; gotta know the software as well... i think the real difference is that compeng students will...
  11. Replies
    8
    Views
    3,151

    i second that...

    i second that...
  12. Replies
    10
    Views
    2,843

    that would suck... imagine corrupting your bios...

    that would suck... imagine corrupting your bios chip with junk, and your bios chip was soldered onto your motherboard. you might as well throw it away. but i don't think any high level lang. could...
  13. Replies
    113
    Views
    18,800

    file attached is the slot machine that "spins"...

    file attached is the slot machine that "spins" the numbers (using your existing code), this is just as an example you could use for some help (i used an empty for loop to delay time, i think you...
  14. Replies
    113
    Views
    18,800

    actually, for simplicity and also since a slot...

    actually, for simplicity and also since a slot machine doesn't do it anyway, we don't have to include the slowing down of "spinning". we just stop each number from "spinning" one by one. also, we...
  15. Replies
    113
    Views
    18,800

    actually i'm forgetting how a slot machine...

    actually i'm forgetting how a slot machine actually works. you don't need to slow down the "spinning" of the numbers. you just let them "spin" the same speed; but what you would need to do is stop...
  16. Replies
    113
    Views
    18,800

    hi paro, yes you did a pretty good job for a...

    hi paro, yes you did a pretty good job for a first semester project. one thing that i would have liked you to have in the project, however, was to return to the main menu rather than quit the entire...
  17. Replies
    4
    Views
    1,882

    i don't think you actually need .h (but i would...

    i don't think you actually need .h (but i would suggest to use .h). i think you could really just have a bunch of .cpp files and making use of the keyword "extern" a lot.
  18. Replies
    10
    Views
    1,464

    same reason why you place one after a declaration...

    same reason why you place one after a declaration of a built-in type (e.g. int x; )

    try looking at:

    class cat
    {
    //bla...
    };

    AS
  19. Replies
    10
    Views
    1,464

    this is an infamous syntax error. you forgot the...

    this is an infamous syntax error. you forgot the semicolon after your class declaration.


    example:

    class cat
    {

    //bla bla...
  20. Replies
    11
    Views
    1,452

    in UNIX you can enter "nice" at the command...

    in UNIX you can enter "nice" at the command prompt. however, the priority will not go in your favor, lol.


    actually it lowers the priority of the overall user process; thus in in regards to a...
  21. Replies
    5
    Views
    1,837

    Nissan Skyline...

    Nissan Skyline
  22. Replies
    5
    Views
    1,837

    but couldn't you just close this program or am i...

    but couldn't you just close this program or am i missing something?
  23. then again, there is always the...

    then again, there is always the programmer-friendly version:



    #include <iostream>
    #include <string>

    int main()
    {
    string s1, s2("trey");
  24. Thread: Open File

    by skyline
    Replies
    4
    Views
    1,101

    i could be wrong but i believe the ifstream...

    i could be wrong but i believe the ifstream constructor takes a c-string (char*). so you would have to have



    cout<<"Enter File Name"<<endl;
    cin>>filename;

    ifstream inl(filename.c_str());
  25. Thread: How to save?

    by skyline
    Replies
    14
    Views
    1,381

    a file pointer. but now things are just getting...

    a file pointer. but now things are just getting a little bit more advanced. the idea of the file pointer is that you can move this pointer throught a file, but to do this you must be able to know...
Results 1 to 25 of 49
Page 1 of 2 1 2