English

Write a program using a class with the following specifications: Class name: Caseconvert Data members: String str Member functions: void getstr(): to accept a string - Computer Applications

Advertisements
Advertisements

Question

Write a program using a class with the following specifications:

Class name: Caseconvert
Data members: String str
Member functions:
void getstr(): to accept a string
void convert(): to obtain a string after converting each uppercase letter into lowercase and vice versa.
void display(): to print the converted string.

Code Writing

Solution

import java.util.*;
public class Caseconvert
{String str = "";

void getstr()
{Scanner ob = new Scanner(System.in);
System.out.println("Enter the string");
str = ob.nextLine();
}

void convert()
{char ch;
String t = "";
for (int i = 0; i < str.length(); i++)
{ch = str.charAt(i);
if(Character.isLetter(ch))
{
if(Character.isUpperCase(ch))
t += Character.toLowerCase(ch);
else
t += Character.toUpperCase(ch);
}}
str = t;
}

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

public static void main(String args[])
{Caseconvertob = new Caseconvert();
ob.getstr();
ob.convert();
ob.display();
}}
shaalaa.com
  Is there an error in this question or solution?
Chapter 6: Class as the Basis of all Computation (Objects and Classes) - EXERCISES [Page 388]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 6 Class as the Basis of all Computation (Objects and Classes)
EXERCISES | Q VI. 11. | Page 388
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×