schaut was ich für einen schönen Code geschrieben habe ha! :D ihr glaubt nicht wie stolz ich darauf bin, danke
package de.codegym.task.task14.task1420;
/*
GGT
*/
import java.util.Scanner;
import java.util.ArrayList;
public class Solution {
public static void main(String[] args) throws Exception {
Scanner scan = new Scanner(System.in);
try {
int a = scan.nextInt();
int b = scan.nextInt();
System.out.println(GGT(a, b));
}
catch (Exception e){
System.out.println(e);
}
}
public static int GGT (int a, int b){
ArrayList<Integer> liste = new ArrayList<>();
int big;
if(a > b) big = a;
else big = b;
for(int i = 1; i < big; i++){
if(a % i == 0 && b % i == 0){
liste.add(i);
}
}
int groesste = Integer.MIN_VALUE;
for(int i = 0; i < liste.size(); i++){
if(liste.get(i) > groesste){
groesste = liste.get(i);
}
}
return groesste;
}
}