回 帖 发 新 帖 刷新版面

主题:D能提供一个输入输出字符串的简单程序吗?谢谢~~

能提供一个输入输出字符串的简单程序吗?谢谢~~

回复列表 (共4个回复)

沙发

Can you just write one by yourself?

板凳


Thank you for your advisual words .I have solved it.

3 楼

I knew you can do it.

The question is NOT how to do it, but DO IT or wait for someone else to do it for you.

Thanks!

4 楼

import java.io.*;

class Demo
{
    public static void main(String[]args)throws Exception
    {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        System.out.println ("请输入字符串,end结束。");
        String str = "";
        while(!(str=br.readLine()).equals("end"))
        {
            System.out.println (str);
        }
        br.close();

    }
}

我来回复

您尚未登录,请登录后再回复。点此登录或注册