forked from ravipatel447/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream.java
39 lines (35 loc) · 1.08 KB
/
stream.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
import java.util.Scanner;
public class stream {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s = sc.nextLine().toUpperCase();
int key = sc.nextInt();
String pl = "";
for(int i=0;i<s.length();i++){
char curr = s.charAt(i);
int cur = (int)curr-'A' +1;
pl = pl + cur;
}
System.out.println("plain text "+pl);
int ciphertext = Integer.parseInt(pl) ^ key;
System.out.println("cipher text "+ciphertext);
decToBinary(ciphertext);
}
static void decToBinary(int n)
{
// array to store binary number
int[] binaryNum = new int[32];
// counter for binary array
int i = 0;
while (n > 0) {
// storing remainder in binary array
binaryNum[i] = n % 2;
n = n / 2;
i++;
}
String binary = "";
// printing binary array in reverse order
for (int j = i - 1; j >= 0; j--)
System.out.print(binaryNum[j]);
}
}