2023. 12. 13. 13:51ㆍ2023.11.21-2024.05.31
package dec13;
import java.util.Scanner;
//이메일을 입력받고 골뱅이가 있는지 확인하는 프로그램
//@가 있다면 올바른 이메일입니다. 출력
//@가 없다면 올바르지 않은 이메일입니다 출력
public class Test01 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String email;
System.out.println("이메일을 입력해주세요.");
email = sc.next();// next()하고 nextLine()이 있습니다.
// next() = 스페이스 즉 공백 전까지 입력받은 문자열을 리턴
// nextLine() = Enter를 치기 전까지 쓴 문자열을 모두 리턴
System.out.println(email);
if (email.contains("@")) {
// if(email.indexOf("@")!= -1) {<이것도 사용 가능
System.out.println("올바른 이메일 주소입니다. ");
System.out.println("당신의 ID " + email.substring(0, email.indexOf('@')));
System.out.println("당신의 이메일 서버는 " + email.substring(email.indexOf('@') + 1));
} else {
System.out.println("올바르지 않은 이메일 주소입니다.");
} //
}
}
'2023.11.21-2024.05.31' 카테고리의 다른 글
231214 JAVA CM01(쌤이 한 것 과 같은 내용) (0) | 2023.12.14 |
---|---|
231214 JAVA 수업 중 객체지향 쌤이 한것 (0) | 2023.12.14 |
231212 JAVA -String (0) | 2023.12.13 |
231212 JAVA -Study(이중 for문) (0) | 2023.12.12 |
231212 JAVA -Study(switch) (0) | 2023.12.12 |