QCM 2010 - Algo 2 - Sources à compléter : JAVA

Bonjour, je me base sur les "sources à compléter" que vous fournissez pour les exercices d'algos mais pour les sources JAVA dans l'algo 2 du QCM 2010, j'ai une erreur de compilation.

Le message d'erreur :

1
2
3
4
5
6
7
2-acide_amine.java:26: variable table_traduction might not have been initialized
                        table_traduction[i] = scanner.nextLine().split(" ");
                        ^
2-acide_amine.java:29: variable table_traduction might not have been initialized
                traduction(N, M, table_traduction, adn);
                                 ^
2 errors

Le code :

1
2
import java.util.ArrayList;
import java.util.Scanner;

class Main
{
private static int traduction(int N, int M, String[][] table_traduction, String s)
{
return 0;
}

public static void main(String args[]) throws java.io.IOException
{
Scanner scanner = new Scanner(System.in);
int N;
int M;
String[][] table_traduction;
String adn;

N = scanner.nextInt();
scanner.nextLine();

M = scanner.nextInt();
scanner.nextLine();

for (int i = 0; i table_traduction[i] = scanner.nextLine().split(" ");

adn = scanner.nextLine();
traduction(N, M, table_traduction, adn);
}

}

Répondre au sujet

Vous devez vous enregistrer ou vous connecter pour poster des messages.