We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get 0 to Bigint n from cin. but n==0 is not true. code is below.
int main() { Dodecahedron::Bigint n; while(cin >> n){ //if(Dodecahedron::to_string(n)=="0"){//ok //if(n==n*0){//ok if(n==0){//do not work break; } cout << n << "\n"; } return 0; }
The text was updated successfully, but these errors were encountered:
fix kasparsklavins#29 - do the same in BigInt(long long int) as you d…
09c8fc0
…o for operator=(long long)
No branches or pull requests
get 0 to Bigint n from cin.
but n==0 is not true.
code is below.
The text was updated successfully, but these errors were encountered: