English

Design a class Coding to perform some string related operations on a word containing alphabets only. Example: Input: "Java" Output: Original word: Java J=74 a=97 v= 118 a=97 Lowest - Computer Science (Theory)

Advertisements
Advertisements

Question

Design a class Coding to perform some string related operations on a word containing alphabets only.

Example: Input: "Java"

Output: Original word: Java

J=74

a=97

v= 118

a=97

Lowest ASCII code: 74

Highest ASCII code: 118

Some of the members of the class are given below:

Class name Coding
Data members/instance variables:
wrd stores the word
len stores the length of the word
Methods/Member functions:
Coding() constructor to initialise the data members with legal initial values
void accept( ) to accept a word
void find() to display all the characters of 'wrd' along with their ASCII codes. Also display the lowest ASCII code and the highest ASCII code, in 'wrd'
void show() to display the original word and all the characters of 'wrd' along with their ASCII codes. Also display the lowest ASCII code and the highest ASCII code in 'wrd', by invoking the function find()

Specify the class Coding giving details of the constructor( ), void accept( ), void find( ) and void show(). Define a main() function to create an object and call all the functions accordingly to enable the task.

Answer in Brief

Solution

import Java.util.*; 
class Coding
{
  String wrd;
  int len;

  public Coding()
  {
   wrd="";
   len=0;
  }

  public void accept()
  {
   Scanner sc=new Scanner(System.in);
   System.out.println("Enter a word"); 
   wrd=sc.next(). trim(); 
  }

  public void find() 
  {
   len=wrd.length(); 
   int small=122,large=65; 
   for(int i=0;i<len;i++) 
   {
    char ch=wrd.charAt(i);
    if((int)ch>large) 
    large=ch;
    else if((int)ch<small)
    small=ch;
    System.out.println(ch+"="+(int)ch);
   }
   System.out.println("Lowest ASCII code:"+small);
   System.out.println("Highest ASCII code:"+large);
  }

  public void show()
  {
   System.out.println("Original word: "+wrd); 
   find();
  }

  public static void main(String ar[])
  {
   Coding ob=new Coding();
   ob.accept(); 
   ob.show(); 
  }
}

Output:

Enter a word

Java

Original word: Java

J = 74

a = 97

v = 118

a = 97

Lowest ASCII code: 97

Highest ASCII code: 118

shaalaa.com
Programming in Java (Review of Class Xi Sections B and C)
  Is there an error in this question or solution?
2023-2024 (February) Official
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×