Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java String Exercises: Check whether a specified character is happy or not

Java String: Exercise-87 with Solution

Write a Java program to check whether a specified character is happy or not. A character is happy when the same character appears to its left or right in a string.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public boolean aCharacterIsHappy(String stng) 
{
  int l = stng.length();
  boolean char_happy = true;
  for (int i = 0; i < l; i++) 
  {
    if (stng.charAt(i) == 'z') 
	{
      if (i > 0 && stng.charAt(i-1) == 'z')
        char_happy = true;
      else if (i < l-1 && stng.charAt(i+1) == 'z')
        char_happy = true;
      else
        char_happy = false;
    }
  }
  return char_happy;
}
public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "azzlea";
      System.out.println("The given string is: "+str1);
      System.out.println("Is Z happy in the string: "+m.aCharacterIsHappy(str1));
	  }
}

Sample Output:

The given string is: azzlea
Is z happy in the string: true

The given string is: azmzlea
Is z happy in the string: falses

Pictorial Presentation:

Java String Exercises: Check whether a specified character is happy or not

Flowchart:

Flowchart: Java String Exercises -Check whether a specified character is happy or not.

Java Code Editor:


Improve this sample solution and post your code through Disqus

Previous: Write a Java program to count the number of triples (characters appearing three times in a row) in a given string.
Next: Write a Java program to return a string where every appearance of the lowercase word 'is' has been replaced with 'is not'.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe