Computer Science, asked by shashwatshukla9044, 5 months ago

Double sequence vowels in java in string​

Answers

Answered by shrutikatidankar90
0

Answer:

public String doubleVowel(String str)

{

for(int i = 0; i <= str.length() - 1; i++)

{

char vowel = str.charAt(i);

if(vowel == 'a' || vowel == 'e' || vowel == 'i' || vowel == 'o' || vowel == 'u') } }}

Explanation:

Plz mark me as brainliest.

If you mark me as brainliest.

I will follow you.

Similar questions