JAVA
java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*why nothing is printing and how can i make them print*/
import java.util.*;
class Dcoder
{
public static void main(String args[])
{
String s = "abbdjfjifjrjfk";
char [] c = s.toCharArray();
for(char d:c)
{
StringBuffer sb = new StringBuffer(d);
System.out.println(sb+"");
}
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run