| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 944 人关注过本帖
标题:数组到数的问题!(已解决)
只看楼主 加入收藏
cxwl3sxl
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:495
专家分:129
注 册:2005-11-12
结帖率:100%
收藏
 问题点数:0 回复次数:7 
数组到数的问题!(已解决)

下面的代码有错误吗?为什么通不过啊
(说明:代码段主要实现如下功能:将int型数组num1[],num2[]中的数组合成为一个数,如数 234  表示为 num1[0]=2,num1[1]=3,num1[2]=4 将数组中的数还原并且转换为double型)
int k;
int n1,n2;
double m1,m2;
n1=0;
n2=0;
for(k=0;k<i;k++)
{
n1=n1*10+num1[k];//错误
}
m1=(double)n1+0.0;
for(k=0;k<j;k++)
{
n2=n2*10+num2[k];//错误
}
m2=(double)n2+0.0;
编译后报如下错误:
--------------------Configuration: 计算器 - Win32 Debug--------------------
Compiling...
计算器Dlg.cpp
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(286) : warning C4518: 'int ' : storage-class or type specifier(s) unexpected here; ignored
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(286) : warning C4228: nonstandard extension used : qualifiers after comma in declarator list are ignored
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(293) : error C2108: subscript is not of integral type
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(293) : error C2440: '=' : cannot convert from 'int *' to 'int'
This conversion requires a reinterpret_cast, a C-style cast or function-style cast
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(298) : error C2108: subscript is not of integral type
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(298) : error C2440: '=' : cannot convert from 'int *' to 'int'
This conversion requires a reinterpret_cast, a C-style cast or function-style cast
Error executing cl.exe.

计算器Dlg.obj - 4 error(s), 2 warning(s)

2006-10-24 20:55
cxwl3sxl
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:495
专家分:129
注 册:2005-11-12
收藏
得分:0 
怎么没有人人啊!!!???

努力,哈哈,总有一天会变成高手~~~~~~因为我相信:没有办不到,只有想不到!http://t..cn/fpress
2006-10-24 21:08
kuk
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2005-10-25
收藏
得分:0 

你定义的数组呢?

2006-10-24 21:15
unicorn
Rank: 4
等 级:贵宾
威 望:14
帖 子:1066
专家分:0
注 册:2005-10-25
收藏
得分:0 
什么意思? 给数组赋值,然后用整型表示出来?
int num[5]={1,0,0,0,0};
//然后通过组合使得一个整形变量 n=`10000; ?

unicorn-h.spaces. ◇◆ sava-scratch.spaces.  noh enol ! pue pu!w hw u! shemle aq ll!m noh 
2006-10-24 21:17
cxwl3sxl
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:495
专家分:129
注 册:2005-11-12
收藏
得分:0 

这里是代码片段,数据定义在别的地方:
int num1[100];//操作数一
int num2[100];//操作数二


努力,哈哈,总有一天会变成高手~~~~~~因为我相信:没有办不到,只有想不到!http://t..cn/fpress
2006-10-24 21:18
cxwl3sxl
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:495
专家分:129
注 册:2005-11-12
收藏
得分:0 
嗯!就是那个意思(回四楼)

[此贴子已经被作者于2006-10-24 21:19:39编辑过]



努力,哈哈,总有一天会变成高手~~~~~~因为我相信:没有办不到,只有想不到!http://t..cn/fpress
2006-10-24 21:19
unicorn
Rank: 4
等 级:贵宾
威 望:14
帖 子:1066
专家分:0
注 册:2005-10-25
收藏
得分:0 

Compiling...
计算器Dlg.cpp
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(286) : warning C4518: 'int ' : storage-class or type specifier(s) unexpected here; ignored
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(286) : warning C4228: nonstandard extension used : qualifiers after comma in declarator list are ignored
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(293) : error C2108: subscript is not of integral type
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(293) : error C2440: '=' : cannot convert from 'int *' to 'int'
This conversion requires a reinterpret_cast, a C-style cast or function-style cast
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(298) : error C2108: subscript is not of integral type
G:\我的作业\C++WINDOWS程序设计\计算器\计算器Dlg.cpp(298) : error C2440: '=' : cannot convert from 'int *' to 'int'
This conversion requires a reinterpret_cast, a C-style cast or function-style cast


这个明显是类型转换错误哦...
你的变量都是怎么定义的,说说你的思想

[此贴子已经被作者于2006-10-24 21:28:06编辑过]


unicorn-h.spaces. ◇◆ sava-scratch.spaces.  noh enol ! pue pu!w hw u! shemle aq ll!m noh 
2006-10-24 21:27
cxwl3sxl
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:495
专家分:129
注 册:2005-11-12
收藏
得分:0 
问题已经解决,谢谢大家的热情帮助哈!!
程序本来是建立在mfc下面的,由点击按钮来向数组里面添加一定的值,然后在点击结束按钮的时候将数据全部取出来转换为int型的一个变量!(转化采用的就是c语言的思想,而又恰恰就是这一部分出了错误,所以发到了这里)参与其他的运算.!

[此贴子已经被作者于2006-10-24 21:52:03编辑过]


努力,哈哈,总有一天会变成高手~~~~~~因为我相信:没有办不到,只有想不到!http://t..cn/fpress
2006-10-24 21:46
快速回复:数组到数的问题!(已解决)
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.022929 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved