Unverified Commit ecf38b78 authored by ir1d's avatar ir1d Committed by GitHub
Browse files

Merge pull request #198 from stevebraveman/patch-7

Update bsgs.md
parents 5a2493e3 95cd85bc
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -103,7 +103,9 @@ $\therefore r = 0$.
```cpp
d=1,num=0;
while(gcd(a,c)!=1){
    if(b%gcd(a,c)!=0) \\无解
    if(b%gcd(a,c)!=0) {
        \\无解
    }
    b\=gcd(a,c);
    c\=gcd(a,c);
    d*=a/gcd(a,c);