Changes
Page history
Update End of Term Assignment
authored
Jul 15, 2021
by
Zorenböhmer Christina
Hide whitespace changes
Inline
Side-by-side
End-of-Term-Assignment.md
View page @
62e1ad76
...
...
@@ -31,10 +31,8 @@ Although it was not technically required by the assignment instructions, we want
Specifically, we wanted to allow user input for these decisions:
**1.**
Allow the user to
**accept the default directory or set a new one.**
<details><summary>
See the Code
</summary>
<details><summary>
**1.**
Allow the user to
**accept the default directory or set a new one.**
</summary>
```
java
Scanner
askUser
=
new
Scanner
(
System
.
in
);
// warning coming from non-closed scanner. Note: if we close it, subsequent scanners fail to work.
...
...
@@ -86,9 +84,8 @@ Scanner askUser = new Scanner(System.in); // warning coming from non-closed sc
</details>
**2.**
Ask the user if they would like to
**see additional information**
on the WMS while the programme is running.
<details><summary>
See the Code
</summary>
<details><summary>
**2.**
Ask the user if they would like to
**see additional information**
on the WMS while the programme is running.
</summary>
```
java
...
...
@@ -125,9 +122,8 @@ Scanner askUser = new Scanner(System.in); // warning coming from non-closed sc
</details>
**3.**
Ask the user if they would like to
**proceed to launch**
Google Earth.
<details><summary>
See the Code
</summary>
<details><summary>
**3.**
Ask the user if they would like to
**proceed to launch**
Google Earth.
</summary>
```
java
...
...
...
...