Aden Boden
CpS 209
January 22, 2025
Time spent: 6 hours.
I certify that I completed all steps in the lab using my own computer.
I completed all steps. I wrote Grader.java and converted Guess.java from python to java.
*There are no known issues that I can see. My program was able to read the grades.txt file and gave me the correct output.
PS C:\Users\aden2\OneDrive\Attachments\Spring 2025 Classes\CpS 209\Lab 1> cat grades.txt|java Grader.java
75
67
40
33
PS C:\Users\aden2\OneDrive\Attachments\Spring 2025 Classes\CpS 209\Lab 1> c:; cd 'c:\Users\aden2\OneDrive\Attachments\Spring 2025 Classes\CpS 209\Lab 1'; & 'C:\Program Files\Eclipse Adoptium\jdk-21.0.5.11-hotspot\bin\java.exe' '-XX:+ShowCodeDetailsInExceptionMessages' '-cp' 'C:\Users\aden2\AppData\Roaming\Code\User\workspaceStorage\e6953581dc0bb84d73edadfa835018e7\redhat.java\jdt_ws\Lab 1_39ef6bb9\bin' 'Guess'
Enter your guess: 3
Your guess is too low.
Enter your guess: 7
Your guess is too low.
Enter your guess: 9
You got it!!
It took you 3 guesses.
PS C:\Users\aden2\OneDrive