Recent content by DrKn

  1. D

    C/C++ Using Gotoxy in C++ for Positioning Characters on Screen

    you might need to use a flush on cout too.
  2. D

    C/C++ C++ GUI: Find a Good Website for Help

    id stay away from that. Win32 API is attrocious at best when you need to do more stuff ( but it is the only way to go sometimes ) . though if youre going to head down that path, the msdn developer center is great.
  3. D

    C/C++ Solve C++ Program Issue: Compute Square Root & Compare Difference >50

    you have an extra } } at the end. == is a comparison, not an assignment. having a ; after the num++) ends the while loop there. you arent returning a value from positivePrint or main. Also look up passing by reference , cause i think your code is intending to do that. for...
  4. D

    Solving Ball Hitting Ramp Physics Problem

    the triangle legs was delta x and delta y, and the range was the hypotenuse
  5. D

    Solving Ball Hitting Ramp Physics Problem

    http://img384.imageshack.us/img384/5267/physicsproblem3aq.jpg This is my problem. I called the angle between ramp and horizontal theta. Then, i formed a rectangle between V0 and the ramp, and found the angle between the ramp and V0 is also theta. Then, i repositioned my...
Back
Top