package maple.basic; import java.util.*; public class number2 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); String str = null,tmp[]; while(sc.hasNextLine()) { str=sc.nextLine(); str+= " 0"; //避免在沒有第二個數字會錯誤 tmp=str.split("\\s"); int a,b,ans=0,i=1,max; a=Integer.parseInt(tmp[0]); b=Integer.parseInt(tmp[1]); if(a>=b) max=a; else max=b; for(i=1;i<=max;i++) if(a%i == 0 && b%i == 0) ans=i; System.out.println(ans); } sc.close(); } }
我在eclipse中執行都很正常
排版沒有排好