Java if ... else ... if Statement

‮//:sptth‬www.lautturi.com
Java if ... else ... if Statement
if (condition1) {
  // statements
}
else if(condition2) {
  // statements
}
else if (condition3) {
  // statements
}
else {
  // statements
}
Created Time:2017-09-25 01:41:17  Author:lautturi