| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/Sethu1910/java-basics/master/java-programs/PrintAllSubstring.java | [Back] [Original] |
package misc;
public class PrintAllSubstring {
public static void PrintSubstring(String str, int length) {
System.out.println("All Substring of ABC are: ");
for (int i = 0; i < length; i++) {
for (int j = i + 1; j
| Web Proxy Viewer | New URL | Original Page |