BackJoon Algorithm 2857 FBI

업데이트:
최대 1 분 소요

BackJoon Algorithm - Java

alt

문제

alt

풀이

  • contains() 함수 활용
  • contains() 함수는 대상 문자열에 특정 문자열이 포함되어 있는지 확인하는 함수이다.
import java.util.Scanner;

public class Back_2857 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int count=0;
        String str[]=new String[5];
        for(int i=0;i<5;i++){
            str[i]=sc.nextLine();
            if(str[i].contains("FBI")){
                count++;
                System.out.print((i+1)+" ");
            }
        }
        if(count==0){
            System.out.println("HE GOT AWAY!");
        }
        sc.close();
    }
}

댓글남기기