presentation error 가 왜 뜨는지 모르겠습니다 ㅠㅠㅠ

longkid8923 Reply 8 years 5 weeks ago
import java.util.Scanner; public class Main{ public static void main(String[] args) { String C[] = new String[3]; Scanner input = new Scanner(System.in); for (int i = 0; i < C.length; i++){ C[i] = input.nextLine(); } for (int i = 0; i < C.length; i++){ for (int j = i+1; j < C.length; j++){ if (C[i].compareTo(C[j])>0){ String temp = C[j]; C[j] = C[i]; C[i] = temp; } } } for (int i = 0; i < C.length; i++) System.out.print(C[i] + " "); } } 계속 프리젠테이션 에러가 뜨네요 ㅠㅠ 이유가 뭡니까
keacotle Reply 8 years 5 weeks ago
다음 요소들을 생각해보면 어떨까 합니다. 1. 중간에 공백이 있는 단어들의 경우 어떻게 순서를 정하고 있는가? (abc town, abctown, abczoo의 순서는 어떻게 될까?) 2. 마지막 출력 시에 마지막 도시이름 뒤에 공백이 붙으면 에러가 날까? (만약 난다면 어떻게 처리할까?)