Guest User

Untitled

a guest
Nov 18th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. **import java.util.ArrayList;
  2. import java.util.List;
  3. import java.util.Arrays;
  4. public class strtoArr {
  5. public static void main(String[] args)
  6. {
  7. String string = "0100010111010001000011110111110100010110110011001010001101010010";
  8. char[] ch=string.toCharArray();
  9. for (char chh: ch ) {
  10. System.out.print(chh);
  11. }
  12. }
  13. }**
Add Comment
Please, Sign In to add comment