Skip to content

Commit

Permalink
单词拼写问题
Browse files Browse the repository at this point in the history
  • Loading branch information
z16166 committed Feb 23, 2024
1 parent 9d4cd27 commit fad9f31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ReciprocalSearch2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ int main() {
const mpz_class den = last.get_den();
if ((num % den) != 0) continue;

const mpz_class quotinent = num / den;
if (quotinent > 100) continue;
const mpz_class quotient = num / den;
if (quotient > 100) continue;

int i10 = quotinent.get_si();
int i10 = quotient.get_si();
if (i10 <= i9) continue;

if (check(i1, i2, i3, i4, i5, i6, i7, i8, i9, i10)) {
Expand Down

0 comments on commit fad9f31

Please sign in to comment.