13 Mars
This commit is contained in:
parent
96aaf975c8
commit
663e795de2
BIN
DEV2.1/TP4:Heritage/Documentation/Deuxieme.class
Normal file
BIN
DEV2.1/TP4:Heritage/Documentation/Deuxieme.class
Normal file
Binary file not shown.
11
DEV2.1/TP4:Heritage/Documentation/Deuxieme.java
Normal file
11
DEV2.1/TP4:Heritage/Documentation/Deuxieme.java
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
public class Deuxieme{
|
||||
|
||||
public static void main(String[] args) {
|
||||
if (args.length <= 0){
|
||||
System.err.println("args missing");
|
||||
System.exit(1);
|
||||
} Integer parseInt8 = Integer.parseInt(args[0], 8);
|
||||
System.out.println(Integer.toHexString(parseInt8));
|
||||
}
|
||||
}
|
BIN
DEV2.1/TP4:Heritage/Documentation/Premier.class
Normal file
BIN
DEV2.1/TP4:Heritage/Documentation/Premier.class
Normal file
Binary file not shown.
10
DEV2.1/TP4:Heritage/Documentation/Premier.java
Normal file
10
DEV2.1/TP4:Heritage/Documentation/Premier.java
Normal file
@ -0,0 +1,10 @@
|
||||
import java.lang.*;
|
||||
|
||||
public class Premier{
|
||||
|
||||
public static void main(String[] args) {
|
||||
for (String arg: args){
|
||||
System.out.println(arg.toUpperCase());
|
||||
}
|
||||
}
|
||||
}
|
BIN
DEV2.1/TP4:Heritage/Grisaille.class
Normal file
BIN
DEV2.1/TP4:Heritage/Grisaille.class
Normal file
Binary file not shown.
24
DEV2.1/TP4:Heritage/Grisaille.java
Normal file
24
DEV2.1/TP4:Heritage/Grisaille.java
Normal file
@ -0,0 +1,24 @@
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
|
||||
public class Grisaille extends Color{
|
||||
|
||||
public Grisaille(int val){
|
||||
super(val, val, val);
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
if (args.length <= 0){
|
||||
System.err.println("args missing");
|
||||
System.exit(1);
|
||||
} Integer arg = Integer.parseInt(args[0], 10);
|
||||
JFrame fenetre = new JFrame();
|
||||
fenetre.setSize(400, 200);
|
||||
fenetre.setLocation(0, 0);
|
||||
fenetre.setVisible(true);
|
||||
JPanel panel = new JPanel();
|
||||
panel.setBackground(new Grisaille(arg));
|
||||
fenetre.add(panel);
|
||||
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user