zoukankan      html  css  js  c++  java
  • 字符串示例

    package java15;

    import java.util.Scanner;

    public class Demo6 {

    public static void main(String[] args) {
      boolean fileCorrect=false;
      boolean emailCorrect=false;
        System.out.println("***欢迎进入作业提交系统***");
      Scanner input=new Scanner (System.in);
        System.out.println("请输入java的文件名:");
          String name=input.next();
        System.out.println("请输入您的邮箱:");
          String email=input.next();

    //检查java文件名
        int index=name.lastIndexOf(".");
      if(index!=-1 && index!=0 && name.substring(index+1,name.length()).equals("java")) {
        fileCorrect=true;
      }else {
          System.out.println("文件名无效");
      }
    //检查您的邮箱
      if(email.indexOf('@')!=-1 && email.indexOf(".")>email.indexOf('@')) {
        emailCorrect=true;
      }else {
          System.out.println("您的E-mail无效!");
      }

    //检查结果
      if(fileCorrect && emailCorrect) {
          System.out.println("作业提交成功!");
      }else {
          System.out.println("作业提交失败!!");
        }
      }

    }

  • 相关阅读:
    洛谷 P4484
    洛谷 P4900
    Codeforces 1500D
    Codeforces 1322D
    2021.9.30 Codeforces 中档题四道
    BZOJ 3729
    洛谷 P6276
    Codeforces 1511G
    C语言 typedef
    C语言 回调函数 callback
  • 原文地址:https://www.cnblogs.com/wnwn/p/9810888.html
Copyright © 2011-2022 走看看