-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathDecoding.java
58 lines (52 loc) · 1.67 KB
/
Decoding.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package decoding;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Decoding {
private static Map<Integer, Character> cipher(){
Map<Integer, Character> abc = new HashMap<>();
int start = 1;
for(char i = 'A'; i <= 'Z'; i++){
abc.put(start, i);
start++;
}
abc.put(start, ' ');
return abc;
}
public static void main(String[] args) throws IOException {
int numberCount = 10;
int systemNumber = 27;
StringBuilder result = new StringBuilder();
Map<Integer, Character> abc = cipher();
Scanner sc = new Scanner(new FileReader("input.txt"));
String line = sc.nextLine();
char[] lineArray = line.toCharArray();
for(int i = 0; i < lineArray.length; i++) {
int key = 0;
if(String.valueOf(lineArray[i]).matches("[0-9]")){
key += (lineArray[i] - '0');
}else {
for(int j : abc.keySet()){
if(lineArray[i] == abc.get(j)){
key = j+numberCount-1;
}
}
}
key -= i+1;
key = key % systemNumber;
if(key == 0){
result.append(" ");
}else if(key > 0){
result.append(abc.get(key));
}else {
result.append(abc.get(abc.size() + key));
}
}
FileWriter out = new FileWriter("output.txt");
out.write(String.valueOf(result).toLowerCase());
out.close();
}
}