We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
` public static void printSubstring(String str){ for(int s=0; s<str.length(); s++){ for(int e=s+1; e<str.length; e++){ sout(str.substring(s,e);
} }
`