☕ 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: 25
Status
Not open for further replies.

Similar threads

About this Thread

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

Online now

Members online
976
Guests online
848
Total visitors
1,824

Forum statistics

Threads
2,276,261
Posts
28,968,783
Members
1,231,191
Latest member
yonam
Back
Top