Hey everyone. I have a quickie ( probably easy question for most ) to ask. I have to write a program ( which i'm currently writing ) that reads user input ( I've imported the Scanner class for this ) of an email address. I'm suppose to run a loop that checks each letter one by one for an @ character. If there is only one @ character. I print out that it is a valid email otherwise print out that the email is invalid. My question is I would a do/while loop work best for this? ( considering I won't know the span of the email address) and if so how would I deal with the @ character ( since I know its not considered an int or something ) Thanks in advance for the help

