3 回答
TA贡献1829条经验 获得超4个赞
//建立文件 hello.h
#ifndef _ _HELLO_H_ _
#define _ _HELLO_H_ _
void Hello(void);
#endif
//建立文件 hello.cpp
#include<iostream>
using namespace std;
#include"hello.h"
void Hello(void)
{
cout<<"Hello,world!"<<end;
}
//建立文件 main.cpp
#include<stdlib.h>
#include"hello.h"
int main()
{
Hello();
system("PAUSE");
return 0;
}
TA贡献1712条经验 获得超3个赞
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
printf("Hello World\n");
return 0;
}
TA贡献1735条经验 获得超5个赞
#ifndef _ _HELLO_H_ _
#define _ _HELLO_H_ _
void Hello(void);
#endif
//这些 放在一个头文件里 名字改为hello.h
//********************************************************************************************
#include<iostream>
using namespace std;
#include"hello.h"
void Hello(void)
{
cout<<"Hello,world!"<<end;
}
//这些放在一个cpp文件里 名字改为hello.cpp
//**************************************************************************************
#include<stdlib.h>
#include"hello.h"
int main()
{
Hello();
system("PAUSE");
return 0;
}
//这些放在一个cpp文件里 名字任意
- 3 回答
- 0 关注
- 115 浏览
添加回答
举报