Results 1 to 2 of 2
Thread: Help with, String, Char
- 07-24-2007, 01:47 AM #1
Member
- Join Date
- Jul 2007
- Posts
- 40
- Rep Power
- 0
Help with, String, Char
Hi, i am writing a program for my class and is what it has to do is take a string input from the user and then it has to output the length of the string and how many vowels are in the string.
I have tried everything i can think of, but i need help. I keep getting unexpected type error on all of my if statements I think it is because of what I am trying to compare, but I just don't know any other way to do it. All i need is a little help or point me in the right direction.
ThanksJava Code:import java.util.*; public class Assignment6 { public static void main(String[] args) { String a; int i, j, x; j = 0; x = 0; Scanner scannerKeyboard = new Scanner(System.in); System.out.println("Please enter a sentance: "); a = scannerKeyboard.nextLine(); a.toUpperCase(); for (i = 0; i <= 100; i++){ if (a.charAt(i) = (char)65) j++; else if (a.charAt(i) = (char)69) j++; else if (a.charAt(i) = (char)73) j++; else if (a.charAt(i) = (char)79) j++; else if (a.charAt(i) = (char)85) j++; else x++; } System.out.println("The length of the string entered is " + a.length()); System.out.println("The string you entered has this amount of vowels: " + j); System.out.println("It also has this amount of whitespace and consanants: " + x); } }
- 07-25-2007, 02:58 PM #2
Member
- Join Date
- Jul 2007
- Posts
- 8
- Rep Power
- 0
Similar Threads
-
How can i insert a char into a string
By Jamie in forum New To JavaReplies: 8Last Post: 02-17-2011, 08:59 PM -
Casting an int value into a char
By kurtulas in forum New To JavaReplies: 2Last Post: 02-16-2008, 08:03 PM -
Cannot convert from char to String error
By sondratheloser in forum New To JavaReplies: 1Last Post: 12-13-2007, 09:28 PM -
need help print char and digital
By lowpro in forum New To JavaReplies: 4Last Post: 12-04-2007, 07:20 AM -
Char to String in java
By trill in forum New To JavaReplies: 1Last Post: 08-01-2007, 01:42 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks