hhCandy 5 years ago
parent 716c6ceb70
commit 54e2b86015
  1. BIN
      a.exe
  2. 14
      test.cpp
  3. 14
      yimian.h
  4. 8
      yimian_.cpp

BIN
a.exe

Binary file not shown.

@ -0,0 +1,14 @@
#include<iostream>
#include"yimian.h"
using namespace std;
int main()
{
yimian hh;
hh.hellow();
return 0;
}

@ -0,0 +1,14 @@
#ifndef YIMIAN_H
#define YIMIAN_H
#include<iostream>
using namespace std;
class yimian
{
public:
void hellow()
{
cout << "hhhh" << endl;
}
};
#endif

@ -0,0 +1,8 @@
#include"yimian_.h"
#include<iostream>
using namespace std;
void yimian::hellow()
{
cont<<"Hellow Yimian~"<<endl;
}
Loading…
Cancel
Save