-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
29 lines (21 loc) Β· 871 Bytes
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package String.P17413;
import java.io.*;
public class Main {
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/String/P17413/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s = br.readLine() + " ";
StringBuilder w = new StringBuilder(), sb = new StringBuilder();
boolean stop = false;
for (int i = 0, size = s.length(); i < size; i++) {
char c = s.charAt(i);
if (c == '<') stop = true;
if (!stop && c != ' ') w.append(c);
else if (w.length() > 0) { sb.append(w.reverse()).append(c); w.setLength(0); }
else sb.append(c);
if (c == '>') stop = false;
}
sb.setLength(sb.length()-1);
System.out.println(sb.toString());
}
}