Thread: beginner

  1. #1
    Unregistered
    Guest

    beginner

    I am trying to write a program that resemles turtle graphics using
    the following funcitons
    1 pen up
    2 pen down
    3 turn right
    4 turn left
    5 move forward
    6 print the 20x20 array
    9 end data

    The progam would draw and print a square on a 12x12 square.

    I know I have to make a function for each of the commands above. I also know that I need to use a two dimensional array to
    call out where the I am drawing. I need a little help getting started. Can someone help me out.

  2. #2
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >I need a little help getting started
    Code:
    #include <iostream>
    using namespace std;
    
    int main ( void )
    {
      // Your code here
      return EXIT_SUCCESS;
    }
    Please read the FAQ and follow the smart questions link in my signature.

    -Prelude
    My best code is written with the delete key.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Please Help Me with this beginner C++ Program!
    By ClearSights in forum C++ Programming
    Replies: 7
    Last Post: 09-24-2008, 10:22 AM
  2. Same old beginner question...
    By Sharmz in forum C Programming
    Replies: 15
    Last Post: 08-04-2008, 11:48 AM
  3. What are some good beginner programs I shouold make?
    By oobootsy1 in forum C# Programming
    Replies: 6
    Last Post: 08-09-2005, 02:02 PM
  4. Windows programming for beginner (Absolute beginner)
    By WDT in forum Windows Programming
    Replies: 4
    Last Post: 01-06-2004, 11:21 AM