总结:

package com.aini;

import java.io.*;

public class tre {

	public static void main(String[] args) {
		int b;
		try {
			System.out.println("Please input:");
			while ((b = System.in.read()) != -1) {
				System.out.print((char) b);
			}
		} catch (IOException e) {
			System.out.println(e.toString());
		}
	}
}
//
Please input:
tre
tre
erw
erw
32
32
23
23
fsd
fsd

  

相关文章:

  • 2022-12-23
  • 2021-08-26
  • 2021-08-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-15
  • 2022-12-23
相关资源
相似解决方案