标签:style blog http io ar color sp java 数据
package Algorithm_analysis;
public class Euclid {
public static void main(String[] args){
int m=63;
int n=18;
int remainder=0;
while(n!=0){
remainder=m%n;
m=n;
n=remainder;
}
System.out.print(m);
}
}
/********************************
* 本文来自博客 “李博Garvin“
* 转载请标明出处:http://blog.csdn.net/buptgshengod
******************************************/
标签:style blog http io ar color sp java 数据
原文地址:http://blog.csdn.net/buptgshengod/article/details/41479023