本文介绍了如何处理C / C ++中的大整数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在下面执行此操作。

I need to perform this operation below.

cut = 400000000;
cut = cut * cut + 1;
printf("%d", cut);



如何处理这个大整数。

在此先感谢您的帮助。非常感谢您的帮助。



Sazzad


How can I handle this large integer.
Thanks in advance, your help is greatly appreciated.

Sazzad

推荐答案


这篇关于如何处理C / C ++中的大整数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 12:32