例外処理を使って坂道メンバーの文字数チェックをする。
//例外処理を使って坂道メンバーの文字数チェックをする。
// 新規作成 2021/6/23
// Author 乃木坂好きのITエンジニア
import java.util.Scanner;
public class Sakamichi {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
System.out.println("好きな坂道メンバーを入力してください");
String line = sc.nextLine();
x(line);
System.out.println("4文字以上のメンバーを入力しました ");
}
static void x(String name) throws Exception{
int len = name.length();
//メンバーの文字数が4字未満なら例外処理を実行する
if(len < 4) {
throw new Exception();
}
System.out.println(name);
}
}