测试一下博客的插入代码功能

2022/4/11 6:12:45

本文主要是介绍测试一下博客的插入代码功能,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

import  java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        String str = input.nextLine();
        int num= str.length();
        Boolean first = false;
        if(num%8!=0)
        {
            System.out.print("Wrong Format");
        }
        else
        {

            for(int i=0;i<num;i++)
            {

                String stus = str.substring(i,i+8);
                i=i+7;
                if(stus.startsWith("202017")||stus.startsWith("202061"))
                {
                    String ok = stus.substring(4,8);
                    if(first==true)
                    System.out.print(" "+ok);
                    else
                         System.out.print(ok);
                    first=true;
                }
            }
        }
    }
}

 



这篇关于测试一下博客的插入代码功能的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程