基本语法体
//头文件包含信息
#include <iostream>
//引用命名空间名称
using namespace std;
//主方法体
int main()
//方法体逻辑
{
cout << "Hello, world!" << endl;
return 0;
}
头文件写法
/* math.h */
double f1();
double f2(double);
/* end of math.h */
源文件写法
/* math.cpp */
double f1()
{
//do something here....
return;
}
double f2(double a)
{
//do something here...
return a * a;
}
/* end of math.cpp */
引用写法
/* main.cpp */
#include "math.h"
main()
{
int number1 = f1();
int number2 = f2(number1);
}
/* end of main.cpp */
博客内容个人学习使用,部分摘自网络