Files
DEV/DEV2.1/Exception/ex3/Incomplet.java
2024-03-18 14:28:35 +01:00

14 lines
330 B
Java

import java.io.IOException;
public class Incomplet {
public static void main(String[] args) {
byte[] txt = {0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x0D, 0x0A};
try {
System.out.write(txt);
System.out.flush();
} catch (IOException e) {
e.printStackTrace();
}
}
}