Recent content by noblepants

  1. N

    Recursion to print a fractal pattern

    Thank-you for contacting me this way. I realize now I was walking a fine line. I had no attention to cheat, and I didn't think of the chance of plagiarism. I will not again be asking questions on homework subjects outside of school resource. I am very social phobic so the relative anonymity was...
  2. N

    Recursion to print a fractal pattern

    C++ Recursion to print a "fractal pattern" I guess I really don't understand how to create a initial case for my recursion Can some advice to where I would need to change the code ___________The problem: Create a recursive function to draw this pattern, given a maximum number of stars (which...
  3. N

    Comp Sci Finding circle zero-points with C++

    :smile: Sorry about the notation I was being lazy :redface: And thank you your notes helped clarify a lot. I released that I had the basic concept down but a feeling that some pits and pieces were not structurally best. I have been running into this problem a-lot as a noob programer, at parsing...
  4. N

    Comp Sci Finding circle zero-points with C++

    Hi everyone! My primary question is below the problem. My problem: Circles The standard form of an equation for a circle is (x − h)2 + (y − k)2 = r2 where (h,k) represents the center of the circle and r is the radius. The y-value of the equation becomes zero at the point of intersection with...
  5. N

    Square roots by approximate iterations

    1 recognize that as the problem, I am compounding the values, but how do i increment the decimal value Thanks for catching the count error lets say const delta= .1 but what do I want in the loop to make delta go .01 , .001 .0001 .00001 etc. ? I just don't understand what would construct...
  6. N

    Square roots by approximate iterations

    Homework Statement hi every one I need to construct a C++ square root program that uses approximate values I've done the first part of the work; ********************************************************************************************************************* prompt the user for two...
Back
Top