Advertisements
Advertisements
Question
Define a class to accept and store 10 strings into the array and print the strings with an even number of characters.
Short Note
Solution
import java.util.*;
public class Strings
{
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);
String[] strArray = new String[10];
System.out.println("Enter 10 Strings:");
for (int i=0;i<3;i++)
strArray[i]=sc.nextLine();
for (int i=0;i<3;i++)
{
if (strArray[i].length() %2=0)
System.out.println(strArray[i]);
}
}
}
shaalaa.com
String Array
Is there an error in this question or solution?