Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*----------------*/
- /* TABLEAU */
- /*----------------*/
- public class Tableau_Fonction
- {
- static String tabEnChaine (char[][] tab)
- {
- String retour;
- retour = "";
- for (int i=0;i<tab.length;i++)
- {
- for(int j=0;j<tab[0].length;j++)
- {
- retour = retour + " ";
- retour = retour + tab[i][j] + " ";
- }
- retour = retour + "\n";
- }
- return retour;
- }
- public static void main(String[] a)
- {
- /*----------------------*/
- /* Données */
- /*----------------------*/
- char[][] tabCara1;
- char[][] tabCara2;
- char[][] tabCara3;
- int [][] tabTest;
- /*----------------------*/
- /* Instructions */
- /*----------------------*/
- tabTest = new int[8][8];
- // Initialisation des deux tableaux.
- tabCara1 = new char[][] { { 'T','C','F','Q','K','F','C','T' },
- { 'P','P','P','P','P','P','P','P' },
- { ' ',' ',' ',' ',' ',' ',' ',' ' },
- { ' ',' ',' ',' ',' ',' ',' ',' ' },
- { ' ',' ',' ',' ',' ',' ',' ',' ' },
- { ' ',' ',' ',' ',' ',' ',' ',' ' },
- { 'p','p','p','p','p','p','p','p' },
- { 't','c','f','q','k','f','c','t' } };
- tabCara2 = new char[][] { { 'A', 'B', 'C', 'D' },
- { 'E', 'F', 'G', 'H' } };
- tabCara3 = new char[][] { { 'M', 'M', 'M', 'M', 'M', 'M', 'M', 'M', 'M' },
- { 'M', ' ', ' ', 'M', ' ', ' ', ' ', 'M', ' ' },
- { 'M', ' ', 'M', 'M', 'M', 'M', ' ', ' ', ' ' },
- { 'M', ' ', 'M', 'M', 'M', 'M', 'M', 'M', ' ' },
- { 'M', ' ', ' ', ' ', 'M', 'M', ' ', ' ', ' ' },
- { 'M', 'M', 'M', ' ', 'M', 'M', ' ', 'M', 'M' },
- { 'M', ' ', 'M', ' ', 'M', 'M', ' ', 'M', 'M' },
- { 'M', 'M', ' ', ' ', 'M', 'M', ' ', ' ', ' ' },
- { 'M', ' ', ' ', 'M', 'M', 'M', ' ', 'M', ' ' },
- { 'M', ' ', 'M', 'M', 'M', 'M', ' ', 'M', ' ' },
- { 'M', ' ', ' ', ' ', ' ', 'M', ' ', 'M', ' ' },
- { 'M', ' ', 'M', 'M', ' ', 'M', ' ', 'M', ' ' },
- { 'M', ' ', ' ', ' ', ' ', ' ', ' ', 'M', ' ' },
- { 'M', 'M', 'M', 'M', 'M', 'M', 'M', 'M', ' ' } };
- // ETAPE 1 Affichage de tabCara1 à l'aide de tabEnChaine de VisuGrille
- System.out.println(tabEnChaine(tabCara1));
- //System.out.println();
- // ETAPE 2 Affichage de tabCara2 à l'aide de tabEnChaine de VisuGrille
- System.out.println(tabEnChaine(tabCara2));
- //System.out.println();
- // ETAPE 3 Affichage de tabCara3 à l'aide de tabEnChaine de VisuGrille
- System.out.println(tabEnChaine(tabCara3));
- //System.out.println();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement