1 //file_NO2:hello.cpp
2 #include<iostream>
3 #include"hello.h"
4 using namespace std;
5 hello::hello()
6 {
7 }
8
9 int hello::Display()
10 {
11 cout<<"Hello, World!\n"<<endl;
12 return 0;
13 }
1 //file_NO2:hello.cpp
2 #include<iostream>