c++问题:怎么把循环输出的数保存在一个值里

#include<iostream>usingnamespacestd;intf(intn){while(n){cout<<n%10;n/=10;if(n<0){n=-n... #include<iostream>
using namespace std;
int f(int n)
{

while(n)
{
cout<<n%10;
n/=10;
if(n<0)
{
n=-n;
cout<<n%10;
n/=10;
}
}
return n;
展开
 我来答
新月牙2
推荐于2016-04-16
知道答主
回答量:16
采纳率:0%
帮助的人:11.5万
展开全部
#include<iostream>
using namespace std;
int a[100];//定义数组a,大小100
int f(int n)
{
    int tot = 0;
    while(n)
    {
        cout<<n%10;
        n/=10;
        if(n<0)
        {
            n=-n;
            a[tot++] = n % 10;//n%10保存在数组a中
            n/=10;
        }
    }
    return n;
}
追问
然后怎么输出这个数组a呢
追答
#include<iostream>
using namespace std;
int a[100];//定义数组a,大小100
int f(int n)
{
    int tot = 0;
    while(n)
    {
        cout<<n%10;
        n/=10;
        if(n<0)
        {
            n=-n;
            a[tot++] = n % 10;//n%10保存在数组a中
            n/=10;
        }
    }
    for(int i = 0; i < tot; i++)
        cout<<a[i]<<endl; //输出a
    return n;
}
985967518
2015-10-24 · 知道合伙人教育行家
985967518
知道合伙人教育行家
采纳数:18027 获赞数:109866
14年本科毕业于河南理工大学,至今就读于河南理工大学攻读硕士学位,从事编程学习已有5年。

向TA提问 私信TA
展开全部
一个变量的保存一个值,否则会被覆盖,但可以用个数组存起来。
追问
对啊 怎么用数组
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式