• 十三周上机作业


    import java.util.Random;
    
    public class random {
    
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            Random r1 = new Random();
            System.out.print("随机数为:");
            for(int i=1;i<=10;i++) {
                int sj = r1.nextInt(100);
                System.out.print(" "+sj);
            }
        }
    
    }

    import java.util.Date;
    import java.text.SimpleDateFormat;
    public class date {
        public static void main(String[] args) {
            SimpleDateFormat s1 = new SimpleDateFormat("Gyyyy年MM月dd日");
            SimpleDateFormat s2=new SimpleDateFormat("今天是Gyyyy年的第D天,E");
            Date d=new Date();
            String a=s1.format(d);
            String b=s2.format(d);     
            System.out.println(a+' '+b);
        }
    }

    import java.util.Scanner;
    
    /*3.输入一个邮箱地址,判断是否合法.如果合法,输出用户名.   合法:必须包含@ 和 . 并且.在@的后面 (用indexof)  
     *       用户名: 例如 dandan@163.com 用户名为dandan (用subString)*/
    public class mail {
            private static Scanner input;
             public static void main(String[] args) {
                    // TODO Auto-generated method stub
                     Scanner input=new Scanner(System.in);
                        System.out.print("请输入合法的邮箱:");
                        String str =input.nextLine();
                        int count=0;
                        int count2=0;
                        int x=0;
                        int y=0;
                        for(int j=0;j<str.length()-1;j++) {
                            String str1=str.substring(j,j+1);
                            if(str1.contentEquals("@")) {
                                count++;
                                x=j;
                            }
                            if(str1.contentEquals(".")) {
                                count2++;
                                y=j;
                            }
                        }
                        if(count==1&&count2==1&&x<(y-1)&&x!=0&&y!=str.length()-1) {
                            System.out.println("合法");
                        }else {
                            System.out.println("不合法");
                        }
    
                }
    
            }

  • 相关阅读:
    接口测试该怎么做
    Mac操作Github实现代码的下载、上传
    Django开发基础--操作数据库
    Django开发基础--创建项目/应用
    Python统计安卓log中Anr、Crash出现的数量
    Mac下PyCharm快捷键大全
    Selenium常用方法及函数、txt参数化
    Appium基于PO模型
    Selenium免登录、等待、unittest、PO模型
    Python接口请求及封装
  • 原文地址:https://www.cnblogs.com/tianzhiyuan/p/12980425.html
Copyright © 2020-2023  润新知