loops while

hello guys ..

please can anyone help me in solving this problem ..

*write a program that asks the user to input a sequence of character ending with

the character '$' . the program shall print out how many digits,lower-case letters

and upper-case letters are entered .

thanx alot .
Please post your code.
I am guessing that you are asking us for a whole solution. So you do not have any codes. Well, you can start with simple cout and cin operations, and after user enters an input, you can check whether it is a low case or $ etc. Try to make this work. If you can't, post your code to forum and some forumers shall help ya:)


while ( cin>>input )
{
if( input==$ )
break;
}

something like this may work for you.
Last edited on
Topic archived. No new replies allowed.