Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Yo dawg, I heard you like FORTRAN 77 and COBOL.
just else will not work because if n=0 then the function will throw illegalargumentexception. your else if works best :)
thanks
Using the same type of condition in two 'if' statements seems redundant. Just an 'else' would do just fine.
else if(n!=0){
throw new IllegalArgumentException("Oh no");
}
if ever you wanted to use the else-if condition