Mixture.cpp: In function 'vector2 calc(ll, ll, ll, ll, ll, ll)':
Mixture.cpp:52:27: error: call of overloaded 'abs(__int128)' is ambiguous
52 | ll g = abs(__gcd(x, y));
| ^
In file included from /usr/include/c++/10/bits/std_abs.h:38,
from /usr/include/c++/10/cmath:47,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
from Mixture.cpp:1:
/usr/include/stdlib.h:840:12: note: candidate: 'int abs(int)'
840 | extern int abs (int __x) __THROW __attribute__ ((__const__)) __wur;
| ^~~
In file included from /usr/include/c++/10/cmath:47,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
from Mixture.cpp:1:
/usr/include/c++/10/bits/std_abs.h:79:3: note: candidate: 'constexpr long double std::abs(long double)'
79 | abs(long double __x)
| ^~~
/usr/include/c++/10/bits/std_abs.h:75:3: note: candidate: 'constexpr float std::abs(float)'
75 | abs(float __x)
| ^~~
/usr/include/c++/10/bits/std_abs.h:71:3: note: candidate: 'constexpr double std::abs(double)'
71 | abs(double __x)
| ^~~
/usr/include/c++/10/bits/std_abs.h:61:3: note: candidate: 'long long int std::abs(long long int)'
61 | abs(long long __x) { return __builtin_llabs (__x); }
| ^~~
/usr/include/c++/10/bits/std_abs.h:56:3: note: candidate: 'long int std::abs(long int)'
56 | abs(long __i) { return __builtin_labs(__i); }
| ^~~
Mixture.cpp: In function 'void addPoint()':
Mixture.cpp:75:15: warning: format '%lld' expects argument of type 'long long int*', but argument 2 has type 'll*' {aka '__int128*'} [-Wformat=]
75 | scanf("%lld %lld %lld", &x, &y, &z);
| ~~~^ ~~
| | |
| | ll* {aka __int128*}
| long long int*
Mixture.cpp:75:20: warning: format '%lld' expects argument of type 'long long int*', but argument 3 has type 'll*' {aka '__int128*'} [-Wformat=]
75 | scanf("%lld %lld %lld", &x, &y, &z);
| ~~~^ ~~
| | |
| | ll* {aka __int128*}
| long long int*
Mixture.cpp:75:25: warning: format '%lld' expects argument of type 'long long int*', but argument 4 has type 'll*' {aka '__int128*'} [-Wformat=]
75 | scanf("%lld %lld %lld", &x, &y, &z);
| ~~~^ ~~
| | |
| | ll* {aka __int128*}
| long long int*
Mixture.cpp: In function 'int main()':
Mixture.cpp:136:15: warning: format '%lld' expects argument of type 'long long int*', but argument 2 has type 'll*' {aka '__int128*'} [-Wformat=]
136 | scanf("%lld %lld %lld %d", &A, &B, &C, &n);
| ~~~^ ~~
| | |
| long long int* ll* {aka __int128*}
Mixture.cpp:136:20: warning: format '%lld' expects argument of type 'long long int*', but argument 3 has type 'll*' {aka '__int128*'} [-Wformat=]
136 | scanf("%lld %lld %lld %d", &A, &B, &C, &n);
| ~~~^ ~~
| | |
| long long int* ll* {aka __int128*}
Mixture.cpp:136:25: warning: format '%lld' expects argument of type 'long long int*', but argument 4 has type 'll*' {aka '__int128*'} [-Wformat=]
136 | scanf("%lld %lld %lld %d", &A, &B, &C, &n);
| ~~~^ ~~
| | |
| long long int* ll* {aka __int128*}
Mixture.cpp: In function 'void addPoint()':
Mixture.cpp:75:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
75 | scanf("%lld %lld %lld", &x, &y, &z);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Mixture.cpp: In function 'void delPoint()':
Mixture.cpp:96:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
96 | scanf("%d", &i);
| ~~~~~^~~~~~~~~~
Mixture.cpp: In function 'int main()':
Mixture.cpp:136:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
136 | scanf("%lld %lld %lld %d", &A, &B, &C, &n);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Mixture.cpp:139:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
139 | scanf(" %c", &c);
| ~~~~~^~~~~~~~~~~