哪种数据类型可以在C

哪种数据类型可以在C

本文介绍了哪种数据类型可以在C ++中存储多达1000位数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在编写一个程序,可以处理多达1000个非负整数。

我查了一下,发现只有未分配的long long int可以存储最多的数字。

还有其他解决方案吗?



我的尝试:



全部查看标准数据类型

解决方案

I am writing a program that can process upto 1000 non negative integers.
I checked and found only unassigned long long int can store the highest number of digits.
Any other solutions?

What I have tried:

Checked all standard datatypes

解决方案


这篇关于哪种数据类型可以在C ++中存储多达1000位数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 06:11