public class CaractereLatin1 {
public static void main(String[] args) {
System.out.println("Liste des Caract�res ISO LATIN-1");
for (int x = 160; x < 255; x++) {
System.out.print((char) x);
System.out.print(" ");
if (x % 8 == 7)
System.out.print("n");
}
}
}
/* Affichage:
*
* Liste des Caract�res ISO LATIN-1
� � � � � � � �
� � � � � � � �
� � � � � � � �
� � � � � � � �
� � � � � � � �
� � � � � � � �
� � � � � � � �
� � � � � � � �
� � � � � � � �
� � � � � � � �
� � � � � � � �
� � � � � � �
*
*
*
****/
Afficher le jeux de caractères de l’ISO Latin-1
Author: user
{filelink=5492} (more…)