Skip to content

Commit 58a5eef

Browse files
author
Lynn Langit
committed
cleaned up
1 parent 3e59655 commit 58a5eef

7 files changed

Lines changed: 21 additions & 6 deletions

File tree

0 Bytes
Binary file not shown.

TeachingKidsProgramming/src/org/teachingkidsprogramming/recipes/quizzes/SpiderWebQuiz.java renamed to TeachingKidsProgramming/src/org/teachingkidsprogramming/section04mastery/SpiderWebQuiz.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
package org.teachingkidsprogramming.recipes.quizzes;
1+
package org.teachingkidsprogramming.section04mastery;
22

33
import org.teachingkidsprogramming.recipes.quizzes.graders.SpiderQuiz;
44
import org.teachingkidsprogramming.recipes.quizzes.graders.SpiderWebQuizGrader;
55

66
public class SpiderWebQuiz extends SpiderQuiz
77
{
8+
//*this needs to be translated from the SmallBasic original into Java
89
public void question1()
910
{
1011
// Do the following the current number of times

TeachingKidsProgramming/src/org/teachingkidsprogramming/recipes/WaterMark.java renamed to TeachingKidsProgramming/src/org/teachingkidsprogramming/section04mastery/WaterMark.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
package org.teachingkidsprogramming.recipes;
2-
1+
package org.teachingkidsprogramming.section04mastery;
32

43
public class WaterMark
54
{
65
public static void main(String[] args)
76
{
7+
//**this is the partially translated - from SmallBasic**
8+
//**Flickr library needs to be implemented in Java
89
// Make the tortoise go as fast as possible --#3
910
// Get a picture of sand from Flickr --#7.1
1011
// A side is 1 pixel long --#4.1

TeachingKidsProgramming/src/org/teachingkidsprogramming/recipes/quizzes/SimpleBubbleQuiz.java renamed to TeachingKidsProgramming/src/org/teachingkidsprogramming/section07events/SimpleBubbleQuiz.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
package org.teachingkidsprogramming.recipes.quizzes;
1+
package org.teachingkidsprogramming.section07events;
22

33
public class SimpleBubbleQuiz
44
{
5+
//this is the original quiz (from SmallBasic) - need to be translated to Java
56
//Variables needed for Quiz
67
// action[1] = 15
78
// ball = 1
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package org.teachingkidsprogramming.section08tdd;
2+
3+
public class FizzBuzzTDD
4+
{
5+
//for the whole numbers from 1 to 100, print either that number, or,
6+
//if that number is evenly divisible by 3, then print the word 'Fizz',
7+
//if that number is evenly divisible by 5, then print the word 'Buzz',
8+
//if that number is evenly divisible by either 3 or 5, then print the word 'FizzBuzz'
9+
//write tests using the Assert object
10+
//for more complete directions see this page
11+
//https://www.penflip.com/lynnlangit/tkp-lesson-plans/blob/master/course09.txt
12+
}

TeachingKidsProgramming/src/org/teachingkidsprogramming/recipes/deepdives/DeepDive09Exceptions.java renamed to TeachingKidsProgramming/src/org/teachingkidsprogramming/section09exceptions/DeepDive09exceptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.teachingkidsprogramming.recipes.deepdives;
1+
package org.teachingkidsprogramming.section09exceptions;
22

33
import org.junit.Assert;
44
import org.junit.Ignore;
@@ -7,7 +7,7 @@
77
import com.spun.util.FormattedException;
88

99

10-
public class DeepDive09Exceptions
10+
public class DeepDive09exceptions
1111
{
1212
// How to do deep dive:
1313
// Step 1: Select the method name (doesABear on line 20) Press the Run Button

0 commit comments

Comments
 (0)