#include <iostream.h>
using namespace std;
void Display() //定义浏览函数。
{
cout <<"A"<<endl;
cout<<"ABC"<<endl;
cout <<"ABCDE"<<endl;
}
int main()
{
Display; //在main函数中调用浏览函数。
return 0;
}
你需要的是哪种形式?
using namespace std;
void Display() //定义浏览函数。
{
cout <<"A"<<endl;
cout<<"ABC"<<endl;
cout <<"ABCDE"<<endl;
}
int main()
{
Display; //在main函数中调用浏览函数。
return 0;
}
你需要的是哪种形式?
吃得苦中苦,方为人上人!