邮箱题目
2021/7/14 6:05:09
本文主要是介绍邮箱题目,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
import java.util.Scanner; /*email判断长度是否合法,判断格式是否正确,接取email中的用户名*/ public class Test04 { public static void main(String[] args) { Scanner s = new Scanner(System.in); System.out.println("请输入邮箱地址"); while(true) { String email = s.next(); if (!(email.length() >= 5 && email.length() <= 16)) { //这里的长度看题目要求更改 System.out.println("长度不合法,请重新输入"); continue; } if (!(email.indexOf("@") < email.indexOf("."))) { //这里的格式按照题目要求更改,但大部分应该都是这样,最多加一个@不能在最前,.不能在最后 System.out.println("格式不合法,请重新输入"); continue; } System.out.println("用户名是" + email.substring(0, email.indexOf("@"))); System.exit(0); } } }
_____________________________
————————————————
随记
2021年7月14日
安
这篇关于邮箱题目的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16MyBatis-Plus资料入门教程:快速上手指南
- 2024-11-16Mybatis资料入门教程:新手必看指南
- 2024-11-16MyBatis资料详解:新手入门与初级实战指南
- 2024-11-16MyBatisPlus资料:初学者入门指南与实用教程
- 2024-11-16MybatisPlus资料详解:初学者入门指南
- 2024-11-16MyBatisX资料:新手入门与初级教程
- 2024-11-16RESTful接口资料详解:新手入门指南
- 2024-11-16RESTful接口资料详解:新手入门教程
- 2024-11-16Spring Boot资料:新手入门与初级教程
- 2024-11-16Springboot资料:新手入门与初级教程