| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 476 人关注过本帖
标题:[求助]出现什么问题了??
取消只看楼主 加入收藏
jd205
Rank: 2
等 级:论坛游民
帖 子:139
专家分:69
注 册:2006-10-26
结帖率:100%
收藏
 问题点数:0 回复次数:0 
[求助]出现什么问题了??

为什么出现两个warning(s)!






#include "stdafx.h"
#include<iostream.h>
class CSum
{
public:
CSum(int a,int b)
{
sum=a+b;
}
int getsum()
{
return sum;
}
private:
int t,sum;
};
int main(int argc, char* argv[])
{
int x,y;
CSum one(x,y);
cout<<"输入两个数:";
cin>>x>>y;
cout<<one.getsum()<<endl;


return 0;
}



--------------------Configuration: chengxu002 - Win32 Debug--------------------
Compiling...
chengxu002.cpp
F:\VC++\VC++程序\MSDev98\MyProjects\chengxu002\chengxu002.cpp(23) : warning C4700: local variable 'y' used without having been initialized
F:\VC++\VC++程序\MSDev98\MyProjects\chengxu002\chengxu002.cpp(23) : warning C4700: local variable 'x' used without having been initialized
Linking...

chengxu002.exe - 0 error(s), 2 warning(s)

搜索更多相关主题的帖子: int sum CSum cout 
2006-11-25 14:38
快速回复:[求助]出现什么问题了??
数据加载中...
 
   



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

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