zoukankan      html  css  js  c++  java
  • 第一上机练习~~~~~~~~~~~~~~~~~~~~~~~~~~~~武汉一定要加油!!!

    上机练习
    1.编写一个随机生成 10个 0(包括) 到 100 之间的随机正整数。

    package chap3;
    
    import java.util.Random;
    
    public class tese {
        public static void main(String[] args) {
            Random u=new Random();
            for(int i=0;i<=10;i++) {
                System.out.println(u.nextInt(100)+1);
            }
        }
    }

     2.通过电子版教材或者视频,自学Date类和SimpleDateFormat类,用以下格式输出
    系统当前时间
    公元2020年05月28日:今天是2020年的第149天,星期四

    package chap3;
    
    import java.text.SimpleDateFormat;
    import java.util.Date;
    
    public class tese {
    
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            SimpleDateFormat sdf = new SimpleDateFormat("Gyyyy年MM月dd日");
            SimpleDateFormat sdf1 = new SimpleDateFormat("今天是Gyyyy年的第 D 天 ,E HH:mm:ss");
            Date now = new Date();
            String s = sdf1.format(now);
            String b = sdf.format(now);
            System.out.println(b);
            System.out.println(s);
        }
    }

    3.输入一个邮箱地址,判断是否合法.如果合法,输出用户名.
    合法:必须包含@ 和 . 并且.在@的后面 (用indexof)
    用户名: 例如 dandan@163.com 用户名为dandan (用subString)

    package chap3;
    
    import java.util.Scanner;
    
    public class tese {
    
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            Scanner input = new Scanner(System.in);
            System.out.print("请输入合法的邮箱:");
            String str = input.next();
            if (str.contains("@") == true || str.contains(".") == true) {
                int indexOf = str.indexOf("@");
                int indexOf2 = str.indexOf(".");
                if (indexOf < indexOf2) {
                    String substring = str.substring(0, indexOf);
                    System.out.println("邮箱合法");
                } else {
                    System.out.println("邮箱不合法");
                }
            } else {
                System.out.println("邮箱不合法");
            }
        }
    }

  • 相关阅读:
    Nagios利用NSClient++监控Windows主机
    Nagios监控Windows的网卡流量
    Nagios 监控Windows服务器(详细篇)
    ODB学习笔记之基础环境搭建
    用Kindle阅读PDF最简单的3个方法!
    RocketMQ吐血总结
    RocketMQ使用
    掌握 analyze API,一举搞定 Elasticsearch 分词难题
    ElasticSearch5.3安装IK分词器并验证
    Kibana server is not ready yet出现的原因
  • 原文地址:https://www.cnblogs.com/skyfail/p/12980266.html
Copyright © 2011-2022 走看看