English

Define a class Arrange described as below: Data members/Instance variables: String str (a word), i, p (to store the length of the word), char ch; Member Methods: - Computer Applications

Advertisements
Advertisements

Question

Define a class Arrange described as below:

Data members/Instance variables: String str (a word), i, p (to store the length of the word), char ch; 
Member Methods:

  1. a parameterised constructor to initialize the data member
  2. to accept the word
  3. to arrange all the alphabets of word in ascending order of their ASCII values without using the sorting technique
  4. to display the arranged alphabets.

Write a main method to create an object of the class and call the above member methods. 

Code Writing

Solution

import java.util.*;
class Arrange{
String str; 
int i, p;
char ch;

Arrange(String a,int b, int c, char d)
{str = a;
i = b;
p = c;
ch = d;
}

void accept()
{Scanner ob = new Scanner(System.in);
System.out.println("Enter a word");
str = ob.next().toUpperCase();
}

void ascending()
{String s2 = "";
p = str.length();
for (int i = 65; i <= 90; i++)
{for (int j = 0; j < p; j++)
{ if (i == (int)str.charAt(j))
s2 += str.charAt(j);
}
}
str = s2;
}

void display()
{System.out.println(str);
}

public static void main(String args[])
{Arrange A = new Arrange("", 0, 0, ' ');
A.accept();
A.ascending();
A.display();
}}
shaalaa.com
  Is there an error in this question or solution?
Chapter 7: Constructors - EXERCISES [Page 419]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 7 Constructors
EXERCISES | Q VI. 4. | Page 419
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×