http://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?id=19933
這題每個數字後面都有一個空格包括最後一筆資料也是
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scn = new Scanner(System.in);
int a=scn.nextInt(),b=scn.nextInt(),max=0;
if(a<b)
max=b;
else
max=a;
for(int i=1;i<max;i++){
if(a%i==0&&b%i==0){
System.out.print(i+" ");
}
}
System.out.println();
}
/*
題目:[C_MM271-易] 所有公因數計算
作者:1010
時間:西元 2016 年 7 月 */
}