1.08 Hand-in: Organizing problems
		Tools for organizing problems
		
			- Problem analysis chart
 
			- Interactivity or structure chart
 
			- IPO chart
 
			- Algorithms
 
			- Flowcharts
 
		
		
		1. Problem analysis chart
		
			Restate problem here
			
				| Given data | 
				Required Results | 
			
			
				| 
					...
				 | 
				
					...
				 | 
			
			
				| Processing | 
				List of solution alternatives | 
			
			
				| 
					...
				 | 
				
					
				 | 
			
		
		2. Interactivity or structure chart
		
			
		
		3. IPO [Input/Processing/Output] chart
		
			IPO chart
			
				| Input | 
				Processing | 
				Module references | 
				Output | 
			
			
				
					... 
					... 
					...
				 | 
				
					... 
					... 
					...
				 | 
				
					1000 
					2000 
					3000
				 | 
				
					...
				 | 
			
		
		
		4. Algorithms
		ProblemName control module (0000)
		
			- Process firstModuleName
 
			- Process secondModuleName
 
			- Process thirdModuleName
 
			- exit
 
		
		firstModuleName module (1000)
		
			- ...
 
			- exit
 
		
		secondModuleName module (2000)
		
			- ...
 
			- exit
 
		
		thirdModuleName module (3000)
		
			- ...
 
			- exit
 
		
		5. Flowchart