public class Main
{
public static void main(String[] args)
{
String[] a={"sell","well","help","hell"} ; // Array of strings
for(String x:a)
if(x.startsWith("he"))
System.out.printf(" Strings that starts with he :" + x +"\n");
for(String x:a)
if(x.endsWith("ll"))
System.out.printf(" Strings that ends with ll :" + x + "\n");
}
}
{
public static void main(String[] args)
{
String[] a={"sell","well","help","hell"} ; // Array of strings
for(String x:a)
if(x.startsWith("he"))
System.out.printf(" Strings that starts with he :" + x +"\n");
for(String x:a)
if(x.endsWith("ll"))
System.out.printf(" Strings that ends with ll :" + x + "\n");
}
}
No comments:
Post a Comment