码迷,mamicode.com
首页 > 其他好文 > 详细

打印表头函数

时间:2018-09-18 23:55:27      阅读:341      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!