Skip to content
Solution Album Upload
  • Pages
    • Solution
    • The Task
    • Array info
    • icon picker
      Pseudocode
    • Python Starter Code
    • Code Clips

Pseudocode

IPO and pseudocode

Analysis and Design

IPO

Input
album name
number of songs
list of song titles
Output
album name
number of songs
numbered list of song titles
pseudocode
1. GET album name from the user by keyboard, store
2. GET number of songs from the user by keyboard, store
3. Declare song title array, set the size to number of songs
4. REPEAT for number of songs on album
5. GET song title and store it in the array
6. END REPEAT

7. display uploading message
8. DISPLAY album name
9. DISPLAY number of songs

10. REPEAT for number of songs on album
11. DISPLAY the song number and the song title
12. END REPEAT

13. DISPLAY upload complete message
 
Want to print your doc?
This is not the way.
Try clicking the ··· in the right corner or using a keyboard shortcut (
CtrlP
) instead.