BUT2/DEV/DEV2.1/TP10_exceptions.java/Q3_Incomplet/Incomplet.java

13 lines
320 B
Java
Raw Normal View History

2023-10-23 13:23:36 +02:00
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);
}
catch (IOException e) {
System.err.println("erreur : un texte n'arrive pas sur la sortie standare");
}
}
}