⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iodemo5.java

📁 JAVA的例子程序
💻 JAVA
字号:
import java.io.*;
public class IODemo5{
    public static void main(String ag[]){
        int i;
        byte[]s=new byte[100];
        try{
            DataInputStream in=new DataInputStream(System.in);
            i=0;
            System.out.println("please input and press enter when finished");
            in.read(s);
            System.out.println();
            System.out.println("begin to print input");
            while(s[i]!=0){
                System.out.print((char)(s[i]));
                i++;
                }
         System.out.println("TOTAL="+i);
         in.close();   
            }catch(Exception e){}
        }
    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -