백준 1032번)명령 프롬프트
package 신규아이디추천;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
public class Main {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int test_case_num=Integer.parseInt(reader.readLine());
ArrayList<String> file_list = new ArrayList<String>();
String answer = "";
for(int i=0; i<test_case_num;i++)
file_list.add(reader.readLine());
String temp_alp1=null;
for(int i=0; i<file_list.get(0).length();i++)
{
for(int j=0; j<file_list.size();j++)
{
String temp_alp2 = file_list.get(j).charAt(i)+"";
if(j==0)
temp_alp1 = temp_alp2;
else if(temp_alp1.equals(temp_alp2))
temp_alp1 = temp_alp2;
else if(!temp_alp1.equals(temp_alp2))
{
temp_alp1="no";
break;
}
}
if(temp_alp1.equals("no"))
answer+="?";
else
answer+=temp_alp1;
}
System.out.println(answer);
}
}
Author And Source
이 문제에 관하여(백준 1032번)명령 프롬프트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@yuiopre98/백준-1032번명령-프롬프트저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)