16 lines
235 B
Java
16 lines
235 B
Java
|
import static utils.Utils.*;
|
||
|
|
||
|
public class Somme2 {
|
||
|
|
||
|
public static final void main(String[] args) {
|
||
|
afficher("Somme 2");
|
||
|
|
||
|
testSomme2(Somme2::somme2);
|
||
|
}
|
||
|
|
||
|
public static final int somme2(int n, int p) {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
}
|