Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Project: Codeageddon
- Point System:
- You will recieve points based on the adverage amount of time and lines of code. You want a low score! (Time+Lines)/2
- Objects:
- 1:
- Create a program that recursively opens files and prints their contents. The files must contain a referance to the next file at the end such as -
- _____________________
- | Hello |
- | World |
- | /nextFile.txt |
- | |
- | |
- _____________________
- 2:
- The program must recursivly open files, ask you for input on each file, pass that into the file, and move to the next.
- 3:
- The program must recursivly loop through the file chain once asking for input to add to files and submiting it then loop through it once more and return the contents of each file.
- 4:
- Your program must now take all the user input at the beginning of the program, parse it on a by-word basis, then place each word in a file depeding on the first letter. The files must still be linked in the same way. You must then bo back through and print the file contents. (e.g. apple would go in a.txt, butterfly in b.txt, ect.)
- 5:
- The user must pass the input from a client to a server which parses the input and places them in a linked file list based upon the first letter of each word. Then the server must return the file contents to the client.
- 6:
- 7:
- 8:
- 9:
- 10:
Advertisement
Add Comment
Please, Sign In to add comment