标签:system std sys example 函数 microsoft void amp back
#include<iostream>
using namespace std;
void TableHead(); //声明打印表头函数
int main(){
TableHead(); //调用打印表头函数
system("pause");
return 0;
}
void TableHead(){
cout<<‘\t‘<<"****************"<<‘\t‘<<endl;
cout<<‘\t‘<<" example "<<‘\t‘<<endl;
cout<<‘\t‘<<"****************"<<‘\t‘<<endl;
}
标签:system std sys example 函数 microsoft void amp back
原文地址:https://www.cnblogs.com/huoyuying/p/9672123.html