Java program to find the greatest common divisor of given numbers

Поделиться
HTML-код
  • Опубликовано: 28 янв 2025

Комментарии •

  • @brankoblesicjr.5792
    @brankoblesicjr.5792 3 года назад

    a little play
    System.out.print("Enter first number: ");
    int num1 = sc.nextInt();

    System.out.print("Enter second number: ");
    int num2 = sc.nextInt();

    int max = (num1 > num2) ? num1:num2;

    int maxDivisor = 0;

    for(int i=1; i