हिंदी

Write a program to input a sentence. Find and display the following: Number of words present in the sentence Number of letters present in the sentence Assume that the sentence neither includes any - Computer Applications

Advertisements
Advertisements

प्रश्न

Write a program to input a sentence. Find and display the following:

  1. Number of words present in the sentence
  2. Number of letters present in the sentence

Assume that the sentence neither includes any digit nor any special character.

कोड लेखन

उत्तर

import java.util.*; 
public class SQ1 
{public static void main(String args[]) 
{Scanner in = new Scanner(System.in); 
String str; 
int word = (), letter = (); 
char ch; 
System.out.println("Enter the string"); 
str = in.nextLine(); 
str = str.trim(); // to remove any leading or trailing space 
str = " " + str; 

for (int i = 0; i < str.length(); i++)
{ ch = str.charAt(i);
if (ch == ' ') 
{if (Character.isLetter(str.char At(i + 1)) == true)
                // to prevent the counting of extra spaces in between words 
word++;         // number of spaces = number of words 
}
else if (ch! = ' ') 
letter++;
}
System.out.println("Number of words = " + word);
System.out.println("Number of letters = " + letter); 
}}
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 4: String Handling - EXERCISES [पृष्ठ २८९]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 4 String Handling
EXERCISES | Q IX. 1. | पृष्ठ २८९
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×