uppercase
i need help
At least one letter/number of the password you choose must be capital: ABCDEFGHIJKLMNOPQRSTUVWXYZ
1 as it has everything
A is the uppercase form of a
uppercase
Enter the Uppercase character of the word "capTain"
Enter the Uppercase character of the word "capTain"
sczC
A is an uppercase character... Unless you mean to look for an "uppercase 1." In that case, there is no actual uppercase 1 or lowercase 1. 1 is just 1. If you want to switch it up though, you could use "I" (the Roman Numeral for 1) or its lowercase equivalent "i."
An uppercase character is a letter that is written in its larger form, such as "A" instead of "a". These characters are often used at the beginning of sentences or for proper nouns.
i need help
A uppercase greek character sigma (Σ).
money ***************************** Could also mean: the main city of a country - London, UK; a capital idea, meaning a good or excellent idea; an uppercase character such as ABC, etc.
At least one letter/number of the password you choose must be capital: ABCDEFGHIJKLMNOPQRSTUVWXYZ
binod6422
I'll just write a function to do that, I hope the good people won't try to run it as it is.... void function() { char c = 'a'; if( c >= 'a' && c <='z' ) System.out.println("LowerCase"); else if( c>='A' && c <='Z' ) System.out.println("UpperCase"); else System.out.println("Special Character"); }