C++函数的调用。谁 能给我举例说明啊
发布网友
发布时间:2024-07-03 09:19
我来回答
共2个回答
热心网友
时间:2024-07-18 07:57
int sum(int a,int b)
{
return (a+b);
}
void main()
{
int a=1,b=3;
int c;
c=sum(a,b);// 这就是一个简单函数调用的例子
}
热心网友
时间:2024-07-18 08:00
#include <iostream.h>
void hello()
{
cout<<"hello,world!你好";
}
void main()
{
hello();//调用hello()函数
}
执行结果:
hello,world!你好