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