欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

估值一亿的AI核心代码现已开源

程序员文章站 2022-06-12 16:52:10
...
package ai.core;

import java.util.Scanner;

/**
 * @description: AI核心代码
 */
public class AiMain {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        String str;
        while (true) {
            str = scanner.next();
            //输入为中文的字符格式
            str = str.replace("吗", "");
            str = str.replace("?", "!");
            System.out.println(str);
        }
    }
}

现场效果展示 :

在吗?
在!
能听懂汉语吗?
能听懂汉语!
真的吗?
真的!

相关标签: AI