コードテスト4番-単語反転
616 ワード
import java.util.Scanner;
public class Main {
public static void main(String[] args){
//민준 정답인데..???
Scanner scan = new Scanner(System.in);
int a = scan.nextInt() + 1;
String []strs = new String[a];
for(int i = 0; i < a ; i ++) {
String str = scan.nextLine();
strs[i] = str;
}
for(int i=0; i < strs.length ; i ++) {
StringBuffer sb = new StringBuffer(strs[i]);
System.out.println(sb.reverse().toString());
}
}
}
裏書き事項StringBuffer sb = new StringBuffer(strs[i]);
System.out.println(sb.reverse().toString());
テキストを反転
Reference
この問題について(コードテスト4番-単語反転), 我々は、より多くの情報をここで見つけました https://velog.io/@jominjun94/코딩테스트4-w7s14j1pテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol