☕ Java Paayos naman po

Status
Not open for further replies.

Falln

Forum Veteran
Di ko alam alin jan papalitan na cannot find symbol nalilito nako. Dapat kase may return value sya di ko makuha lagi error. Sana mafix nyo po.


public class CountVowels {

public static void main(String []args) {
String str = "FAIL: First Attempt in Learning";
int vowels = 0;

}
public static int vowels(String str)
{

str = str.vowels();
for(int i = 0; i < str.length(); ++i)
{
char ch = str.charAt(i);
if(ch == 'a' || ch == 'e' || ch == 'i'
|| ch == 'o' || ch == 'u') {
++vowels;
}
{
return vowels;
}

}

System.out.println("String Value: " + str);
System.out.println("Total Number of Vowels: " + vowels);
}
}
 

Attachments

  • IMG20200925130646.webp
    IMG20200925130646.webp
    278.8 KB · Views: 27
Status
Not open for further replies.

About this Thread

  • 1
    Replies
  • 265
    Views
  • 2
    Participants
Last reply from:
moonlightK

Trending Topics

Online now

Members online
1,179
Guests online
1,935
Total visitors
3,114

Forum statistics

Threads
2,293,774
Posts
29,086,635
Members
1,207,957
Latest member
jethooor
Back
Top