我写出来的程序电脑就说运行成功,但是没有功能啊。而且我的C++软件安装不了。只能直接用的。
#include<iostream> using namespace std; int sum(int x,int y); int main() { int a,b,c; cout<<"请你输入两个整形数字;"<<endl; cin>>a>>b; c=suma(a,b); cout<<"Then sum of a and b is:"<<sum<<endl; return 0; } int sum(int x,int y){ return x+y; }
所有的程序都是这样,只提示运行成功。
这说的是 Failed to execute,你们没教英文么?
不是发在自己的博客里,是发消息给我。
c=suma(a,b);//你的程序出错了,这里调用的是suma(),你看你的函数是什么?
c=suma(a,b);
cout<<"Then sum of a and b is:"<<sum<<endl;
这两行错误了,sum是一个函数,改为:
c=sum(a,b);
cout<<"Then sum of a and b is:"<<c<<endl;
即可,另外为什么不用VC啊?