This site requires JavaScript, please enable it in your browser!
Greenfoot back
nathan1610
nathan1610 wrote ...

2013/10/25

Coding Write up - Please help!

nathan1610 nathan1610

2013/10/25

#
Hi there, Please help! I need to do a write up on different programming techniques I have used and I have no idea where to start! I have made a game involving a robot that moves around picks things up, has a counter etc, but what counts as a programming technique? Also, I have to talk about how different parts of the solution work together, and I have no idea at all, before talking about my coding efficiency, data structures and robustability! My goodness! I have no idea at all! Please help! And if anyone would like to exchange their botmod write ups just to look at somone elses, just ask
I would consider a programming technique as how one person may solve a problem through programming, compared to another person and how he/she will solve the same problem, but a different way. You may want to look at other people's code, looking at their organization, did they use a lot of code, or a little bit of code to solve the problem, what techniques and shortcuts did they use, etc. One example could be like this:
//Did the person use the Math class?...
int num = Math.pow(5,4);

//Or did they write it out?
int num = 5*5*5*5;
Hope that helps.
You need to login to post a reply.