Advertisements
Advertisements
प्रश्न
Define a class to accept and store 10 strings into the array and print the strings with an even number of characters.
टिप्पणी लिखिए
उत्तर
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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?