Advertisement
Guest User

Untitled

a guest
Nov 19th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1.  
  2. public class Sentence {
  3. public static void main(String[] args) {
  4.  
  5.  
  6.  
  7. String sentence = "I love Desi ";
  8. String reverse = "";
  9. char[] characters = sentence.toCharArray();
  10. char space =' ';
  11. int size = 1;
  12. for(char c : characters) {
  13. if(c == ' ') {
  14. size++;
  15. }
  16. }
  17. System.out.println(size);
  18. String[] array=new String[size];
  19. for(String t:array) {
  20. System.out.println(t);
  21.  
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement