在c++中如何在一个工程里创建多个自定义函数并调用 5
就是简单的函数,比如在一个工程里创建主函数main,再创建一个hello函数,怎么调用hello函数里随便输出一行文字就行。关键是格式啊,创建工程和文件会了,就是不知道要...
就是简单的函数,比如在一个工程里创建主函数main,再创建一个hello函数,怎么调用hello函数里随便输出一行文字就行。关键是格式啊,创建工程和文件会了,就是不知道要怎么调用自定义的函数。
展开
2个回答
展开全部
//以下为myfunc.h头文件内容
void hello(); //声明hello函数
int hello_with_ret(); //声明带返回值的函数
int sum(int a, int b); //声明带参数和返回值的函数,实现求和功能
//以下为myfunc.cpp文件内容
#include "myfunc.h"
#include <stdio.h>
void hello() //定义hello函数
{
printf("hello, world.\n"); //输出到终端(屏幕)
}
int hello_with_ret()
{
return 2015;
}
int sum(int a, int b)
{
return a+b;
}
//以下为main.cpp文件内容
#include "myfunc.h"
#include <stdio.h> //printf函数需要的头文件
int main()
{
printf("this is main.\n"); //输出到终端(屏幕)
hello(); //调用hello函数
int n = hello_with_ret(); //将hello_with_ret返回的2015赋值给n
printf("n = %d\n", n); //打印n的值
printf("75+25= %d\n", sum(75, 25)); //打印sum(75,25)的返回值
return 0;
}
先拿起书好好看C++的基础语法吧,函数的声明和定义。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询