![]() |
#2
he52202008-10-24 21:46
|
这是6.cpp:
#include <iostream>
using namespace std;
main()
{
int a=3,b=4;
cout<<a+b<<endl;
return 0;
}这是6b.cpp:
#include "6.cpp"
{
cout<<a+b<<end;
}请问应该怎么改才能让6b.cpp中利用上6.cpp中的内容?