mirror of
https://github.com/Estom/notes.git
synced 2026-05-12 11:36:49 +08:00
13 lines
183 B
C++
13 lines
183 B
C++
#include"a.h"
|
|
#include "b.h"
|
|
#include <iostream>
|
|
using namespace std;
|
|
int main()
|
|
{
|
|
cout<<a<<endl;
|
|
hello();
|
|
N nnn;
|
|
cout<<nnn.world()<<endl;
|
|
// a=12;
|
|
return 0;
|
|
} |