|
Yes thanks I know this thanks. But what I am actually trying to do is have it call upon 2 different things within the method. for instance
if(balance > 0){
system.out.println("bye");
}
else if(balance <60){
system.out.printl("hi);
so I am unable to just put "bye" within there. This class is being called by another class that is why to string is used.
|