Tuesday, January 1, 2008

Final set of blogs have been scored. No more blogs for last few days of semester. See edline for score.

Sunday, November 25, 2007

Scored thru 11/25 (20 pts possible) - see Edline for your score tomorrow evening.

Friday, November 9, 2007

<('_'<) ^('_'^) (^'_')^ (>'_')> t(O.Ot)

What choices did you face in developing your solution, and how did you choose among them?

while making the star pyramid i had to choose what kind of loop to use and how many variables to make. I am currently working on using several for loops, however i am not sure if this will work. I chose for loop because i know there is a set number of iterations i will be using, however, that number chances greatly based on how many lines i have. This is currently my best bet (in my opinion) and ill try to finish the projec tthis way.

Thursday, November 8, 2007

rawr

What problems did you encounter while developing your solution? How do you plan to overcome
them?/How did you overcome them?

While making the multiplication table i had problems with using printf. I did not know the exact formatting of it and just copied if over from another project. In this case i was using integers, but i left how many decimal places there should be, which threw an error. I fixed this problem by deleted that part of code (the decimals). After that i only have a few short steps to finish the assignment.

Wednesday, November 7, 2007

do{ myhomework } while (happymeter<10);

Are there any specific tips you would give to someone else tackling the same problem? How would what you suggest benefit that person in solving the problem?

While doing while and do while loops remember the basic structure of the loop. It can get confusing to trace code if you do not remember when the loop is supposed to end and where it checks the conditions. Sometimes u can skip most of the code that does not apply to the end condition of the loop. There is usually useless code written in that you do not need to understand to answer the question.

Tuesday, November 6, 2007

for (int i; i<10; i++) { do { } while(iSaidSo=true);}

What progress did you make today on your solution? What needs to be completed next class?

today i finished the chapter 11 problems on the for loop. Some of the problems were a little difficult but after reading through most of the lesson i got through them. Next class i have to complete whatever assignment ms. Petr gives me, mabye it'll be a fun one instead of more bookwork!!!!!!!!!!!!!!!

Friday, November 2, 2007

for (int i=1; i<0; i++) { System.out.println("SPAM"); }

Discuss some specific examples in which you might use iteration

You might use iteration to make winning conditions of a bored game or have repeated turns on a board game. Another thing iterations do is make multiplication tables or general tables with a functional set of numbers. Iterations can be used to spam people online (like my title)! The most important thing they do is save time and memory.