입력 :
The first line of input contains a single integer N, (1 ≤ N ≤ 1000) which is the number of datasets that follow.
Each dataset consists of a single line of input containing M, a space, and a single word made up of uppercase letters only. M will be less than or equal to the length of the word. The length of the word is guaranteed to be less than or equal to 80.
출력 :
For each dataset, you should generate one line of output with the following values: The dataset
number as a decimal integer (start counting at one), a space, and the misspelled word. The
misspelled word is the input word with the indicated character deleted.
일단 스캐너로 입력할 개수를 받고,
개수만큼 for문을 돌려 각 줄을 입력받음.
입력받은 문자열 중에 소문자가 있는지 체크하고 없으면
문자열 길이 체크, m의 범위 체크한 뒤
Dataset 을 만들어 저장하고, 마지막에 출력
이렇게 만들었는데요, 여러단어들로 테스트 해보니 잘 되는데
계속 채점에서 틀렸다고 뜨네요...
어디가 문제인지 감이 안오네요;
merkunevus
입력 :
The first line of input contains a single integer N, (1 ≤ N ≤ 1000) which is the number of datasets that follow.
Each dataset consists of a single line of input containing M, a space, and a single word made up of uppercase letters only. M will be less than or equal to the length of the word. The length of the word is guaranteed to be less than or equal to 80.
출력 :
For each dataset, you should generate one line of output with the following values: The dataset
number as a decimal integer (start counting at one), a space, and the misspelled word. The
misspelled word is the input word with the indicated character deleted.
일단 스캐너로 입력할 개수를 받고,
개수만큼 for문을 돌려 각 줄을 입력받음.
입력받은 문자열 중에 소문자가 있는지 체크하고 없으면
문자열 길이 체크, m의 범위 체크한 뒤
Dataset 을 만들어 저장하고, 마지막에 출력
이렇게 만들었는데요, 여러단어들로 테스트 해보니 잘 되는데
계속 채점에서 틀렸다고 뜨네요...
어디가 문제인지 감이 안오네요;
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
}
class Dataset{
}
10년 전