如何整数数组转换成C中的整数? [英] How to convert array of integers into an integer in C?

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

问题描述

我如何转换的6整数数组到一个整数。下面提供的就是我想要做的例子。

How can I convert an array of 6 integers into a single integer. Example provided below of what I want to do.

阵列: {0,1,2,3,4,5,6}

整数: 123456

感谢您!

推荐答案

试试这个:

int i, k = 0;
for (i = 0; i < n; i++)
    k = 10 * k + a[i];

其中, N 是数组的长度。这是真实的,但是,当阵列足够短,否则,你会得到一个 INT 溢出。

where n is the length of the array. This is true, however, when the array is short enough otherwise you would get an int overflow.

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

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆