File tree Expand file tree Collapse file tree 2 files changed +24
-24
lines changed
src/main/java/org/teachingkidsprogramming/recipes
completed/section01forloops/KataQuestions Expand file tree Collapse file tree 2 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 1+ package org .teachingkidsprogramming .recipes .completed .section01forloops .KataQuestions ;
2+
3+ public class understandingKatas
4+ {
5+ public static void main (String [] args ) throws Exception
6+ {
7+ // Requirement: Write the USER STORIES to draw 3 pyramids
8+ // Draw a multiple sketches of your idea(s)
9+ // Decompose the sketch into one or more user stories
10+ // Write out each step in English
11+ // for example (create one pyramid, create one side)
12+ // optionally write each user story on a post it
13+ // Use a Kanban board with 'ToDo', 'Doing', 'Done'
14+ // Select the simplest user story than can be verified
15+ // Write the English, write the code and run the code
16+ // Verify - Does your code do what you expected?
17+ // Continue
18+ // Write the code one line at a time
19+ // Run your program to verify that your code works
20+ // Part Two - when you are 'done' look at your code - are there duplicate lines
21+ // Remove duplicate code by using the 'extract method' re-factoring
22+ // Understand how to pass multiple arguments to a method
23+ }
24+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments