2019年7月27日 星期六

gcd

#include <stdio.h>
int main()
{
    int a,b;
    scanf("%d%d",&a,&b);
    while(a%b !=0)
    {
        int temp=a%b;
        printf("%d %d %d 連分數:%d\n",a,b,a%d, a/b);
        a=b;
        b=temp;
    }
    printf("連分數:%d\n",a/b);
    printf("%d",b);
}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...