[VIEWED 3930
TIMES]
|
SAVE! for ease of future access.
|
|
|
dhimaar1
Please log in to subscribe to dhimaar1's postings.
Posted on 02-22-08 11:11
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
guys i need help with this.
string s = nepal is beautiful.
so how do i find number of vowel "a" or number of consoant "L" from the string.
.
|
|
|
|
OcRam
Please log in to subscribe to OcRam's postings.
Posted on 02-22-08 11:20
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
just a flow chart only, i don't know much abt specific language, but should work.
count=0 for i=1 to length of s if s[i]="a" count++
end i
count is ur number of a
|
|
|
puntey_kancha
Please log in to subscribe to puntey_kancha's postings.
Posted on 02-22-08 12:07
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
public void strConvert () {
String myString = "nepal is beautiful.";
int countA = 0;
int countL = 0;
for (int i = 0; i < myString.length(); i++) {
if (myString.charAt(i) == 'a') {
countA++;
}
if (myString.charAt(i) == 'l') {
countL++;
}
}
System. out.println("Number of a = " + countA);
System. out.println("Number of l = " + countL);
}
|
|
|
dhimaar1
Please log in to subscribe to dhimaar1's postings.
Posted on 02-22-08 2:06
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
thanks for the help guys,....... i am taking my first ever programming class so i am going little crazy figuring it out......anyway thanks for the time and help
|
|
|
Brain Malfunction
Please log in to subscribe to Brain Malfunction's postings.
Posted on 02-22-08 11:40
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
http://java.sun.com/docs/books/tutorial/
|
|
|
nails
Please log in to subscribe to nails's postings.
Posted on 02-24-08 6:19
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
dhimaar1 - i have an excellent book on Java called: Java: An eventful approach. I am sure you'll find it extremely handy...it's brand new but I am willing to sell it to you for as low as 50 bucks. If you want it do email!
|
|