i 绝望

依然

Miss Lang

java代码流类

总结:

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

  

posted on 2013-11-10 12:12  juewang  阅读(238)  评论(0编辑  收藏  举报

绝望依然

Miss Lang