Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import iut.algo.Clavier;
- /** Class La grille
- * @author Monster
- * date : 18/11/2019
- */
- public class TP6_exercice8V2
- {
- static String tabEnChaine (char[][] tab)
- {
- String retour = " ";
- for(int i=0; i<tab[0].length; i++)
- {
- retour = retour + " " + i + " ";
- }
- retour = retour + "\n +";
- for(int i=0; i<tab[0].length; i++)
- {
- retour = retour + "---+";
- }
- retour = retour + "\n";
- for(int i=0; i<tab.length; i++)
- {
- retour = retour + i + " ";
- if(i<10) retour += " ";
- retour = retour + "| ";
- for(int j=0; j<tab[i].length; j++)
- {
- retour = retour + tab[i][j] + " | ";
- }
- retour = retour + "\n +";
- for(int j=0; j<tab[i].length; j++)
- {
- retour = retour + "---+";
- }
- 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