EduLearn - Online Education Platform

Welcome to EduLearn!

Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.

Browse Courses

Count the number of vowels in the given string by using queue

 

import java.util.*;

class Count

{

public static void main(String args[])

{

String input=”queue”;//4

 

Queue<Character> q=new LinkedList<>();

 

int count=0;

 

for(char ch:input.toCharArray())//e

{

q.add(ch);//e

}

 

while(!q.isEmpty())//true

{

char ch=q.remove();

if(“aeiouAEIOU”.indexOf(ch)!=-1)//indexof returns -1 if value is not found

{

count++;

}

}

System.out.println(count);

}}

Java counting number program in queue

Leave a Reply

Your email address will not be published. Required fields are marked *

EduLearn - Online Education Platform

Welcome to EduLearn!

Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.

Browse Courses

Popular Courses

[Course Image]

Introduction to Programming

Learn the fundamentals of programming with Python in this beginner-friendly course.

12 Hours Beginner
[Course Image]

Data Science Essentials

Master the basics of data analysis, visualization, and machine learning.

20 Hours Intermediate
[Course Image]

Web Development Bootcamp

Build modern websites with HTML, CSS, JavaScript and popular frameworks.

30 Hours Beginner
[Course Image]

Digital Marketing Fundamentals

Learn SEO, social media marketing, email campaigns and analytics.

15 Hours Beginner
Educational Website Footer