老样子,先上图,文末贴代码。
MyEclipse版
android studio版
是不是很简短呢?但是功能很强大吖,好吧,贴代码咯:
/**
* AI核心代码 价值1个亿~
* @author BillyLu
*
*/
public class AiMain {
public static void main(String[] args) {
Scanner sc =new Scanner(System.in);
String str;
while (true) {
str = sc.next();
str = str.replace("吗", "");
str = str.replace("?", "!");
str = str.replace("?", "!");
System.out.println(str);
}
}
}