Help solve the problem. the first part of the code works, the selection is made, but when typing "exit" - an error
exit
Exception in thread "main" java.lang.NumberFormatException: For input string: "exit"
at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67)
at java.base/java.lang.Integer.parseInt(Integer.java:668)
at java.base/java.lang.Integer.parseInt(Integer.java:786)
at Main.main(Main.java:139)
Process finished with exit code 1
Code:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
String camel = """
Switching on the camera in the camel habitat...
___.-''''-.
/___ @ |
',,,,. | _.'''''''._
' | / \\
| \\ _.-' \\
| '.-' '-.
| ',
| '',
',,-, ':;
',,| ;,, ,' ;;
! ; !'',,,',',,,,'! ; ;:
: ; ! ! ! ! ; ; :;
; ; ! ! ! ! ; ; ;,
; ; ! ! ! ! ; ;
; ; ! ! ! ! ; ;
;,, !,! !,! ;,;
/_I L_I L_I /_I
Look at that! Our little camel is sunbathing!""";
String lion = """
Switching on the camera in the lion habitat...
,w.
,YWMMw ,M ,
_.---.._ __..---._.'MMMMMw,wMWmW,
_.-"" ''' YP"WMMMMMMMMMb,
.-' __.' .' MMMMW^WMMMM;
_, .'.-'"; `, /` .--"" :MMM[==MWMW^;
,mM^" ,-'.' / ; ; / , MMMMb_wMW" @\\
,MM:. .'.-' .' ; `\\ ; `, MMMMMMMW `"=./`-,
WMMm__,-'.' / _.\\ F'''-+,, ;_,_.dMMMMMMMM[,_ / `=_}
"^MP__.-' ,-' _.--"" `-, ; \\ ; ;MMMMMMMMMMW^``; __|
/ .' ; ; ) )`{ \\ `"^W^`, \\ :
/ .' / ( .' / Ww._ `. `"
/ Y, `, `-,=,_{ ; MMMP`""-, `-._.-,
(--, ) `,_ / `) \\/"") ^" `-, -;"\\:
The lion is roaring!""";
String deer = """
Switching on the camera in the deer habitat...
/| |\\
`__\\ //__'
|| ||
\\__`\\ |'__/
`_\\ //_'
_.,:---;,._
\\_: :_/
|@. .@|
| |
,\\.-./ \\
;;`-' `---__________-----.-.
;;; \\_\\
';;; |
; | ;
\\ \\ \\ | /
\\_, \\ / \\ |\\
|';| |,,,,,,,,/ \\ \\ \\_
| | | \\ / |
\\ \\ | | / \\ |
| || | | | | |
| || | | | | |
| || | | | | |
|_||_| |_| |_|
/_//_/ /_/ /_/
Our 'Bambi' looks hungry. Let's go to feed it!""";
String goose = """
Switching on the camera in the goose habitat...
_
,-"" "".
,' ____ `.
,' ,' `. `._
(`. _..--.._ ,' ,' \\ \\
(`-.\\ .-"" ""' / ( d _b
(`._ `-"" ,._ ( `-( \\
<_ ` ( <`< \\ `-._\\
<`- (__< < :
(__ (_<_< ;
`------------------------------------------
The goose is staring intently at you... Maybe it's time to change the channel?""";
String bat = """
Switching on the camera in the bat habitat...
_________________ _________________
~-. \\ |\\___/| / .-~
~-. \\ / o o \\ / .-~
> \\ W // <
/ /~---~\\ \\
/_ | | _\\
~-. | | .-~
; \\ / i
/___ /\\ /\\ ___\\
~-. / \\_/ \\ .-~
V V
This bat looks like it's doing fine.""";
String rabbit = """
Switching on the camera in the rabbit habitat...
,
/| __
/ | ,-~ /
Y :| // /
| jj /( .^
>-"~"-v"
/ Y
jo o |
( ~T~ j
>._-' _./
/ "~" |
Y _, |
/| ;-"~ _ l
/ l/ ,-"~ \\
\\//\\/ .- \\
Y / Y
l I !
]\\ _\\ /"\\
(" ~----( ~ Y. )
It looks like we will soon have more rabbits!""";
String[] animals = {camel, lion, deer, goose, bat, rabbit};
// write your code here
boolean flag;
boolean flag1;
Scanner sc = new Scanner(System.in);
do {
String isbnPattern = "exit";
final int a = 5;
String input = sc.next();
int inputInt = Integer.parseInt(input);
flag = input.matches(isbnPattern);
flag1 = a >= inputInt;
if (!flag)
if (flag1)
System.out.println(animals[inputInt]);
} while (!flag || flag1);
System.out.println("See you later!");
}
}