当前位置:首页 > 职业技能 > 计算机证书

2017年计算机二级考试java章节辅导:标准输入输出例子

来源:小学无忧 作者: 2017-06-15


9.2 标准输入输出例子

  import java.io.* class myCat{

  public void main(String args[]) throws IOException{

  int b;

  int count = 0;

  while ((b = System.in.read()) != -1){

  count++;

  System.out.print((char)b);

  }

  System.out.println(); //blank line System.err.println("counted"+count+"total bytes.");

  }

  }

猜你喜欢
    无相关信息